Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / scripts / rev_control / svnapply.sh
index c9db62e71cce74b3756b570637faa8279d42cd88..32ce85aa2375cd8e4b7565264cb64b64b0512db8 100644 (file)
@@ -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