svn - Temporarily ignore subversion ignore settings -
i have bunch of files want ignore have file extensions listed in global ignore on folder properties ignore list. however, have one-time need see unversioned files in working copy, want ignore. can't figure out easy way without clearing out global ignore, , removing ignore folder properties, doing check, , adding ignore property , global string in.
is there easy way see list of (and commit) unversioned files in working copy no matter if should ignored or not?
why don't use --no-ignore
flag while doing svn add
?
--no-ignore : disregard default , svn:ignore property ignores
try doing like:
svn add --force --no-ignore .
note have careful files added.
Comments
Post a Comment