X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Frev_control%2Fsvnapply.sh;h=32ce85aa2375cd8e4b7565264cb64b64b0512db8;hb=3ff1c842fd1406d22b7c66a3c8d1d8bac31c43c5;hp=c9db62e71cce74b3756b570637faa8279d42cd88;hpb=c4c2b8b3a6ad11726f0f0ed0665ffff92ad9e744;p=feisty_meow.git diff --git a/scripts/rev_control/svnapply.sh b/scripts/rev_control/svnapply.sh index c9db62e7..32ce85aa 100644 --- a/scripts/rev_control/svnapply.sh +++ b/scripts/rev_control/svnapply.sh @@ -1,12 +1,15 @@ #!/bin/bash # -# Applies arbitrary commands to any svn status. e.g. +# Applies arbitrary commands to any svn status. # -# Delete all non-svn files (escape the ? from the shell): -# svnapply \? rm +# For example, this shows any files that are in the working folder but are not part of the svn repository: +# svnapply \? echo +# +# This deletes all files that are not checked into svn (escape the ? from the shell): +# svnapply \? rm # # List all conflicted files: -# svnapply C ls -l +# svnapply C ls -l # # found on web at: # http://stackoverflow.com/questions/160104/how-do-you-add-all-untracked-files-in-svn-something-like-git-add-i