3 # Applies arbitrary commands to any svn status.
5 # For example, this shows any files that are in the working folder but are not part of the svn repository:
8 # This deletes all files that are not checked into svn (escape the ? from the shell):
11 # List all conflicted files:
15 # http://stackoverflow.com/questions/160104/how-do-you-add-all-untracked-files-in-svn-something-like-git-add-i
18 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
24 svn st | egrep "^\\${PATTERN}[ ]+" | \
25 sed -e "s|^\\${PATTERN}[ ]*||" | \
26 sed -e "s|\\\\|/|g" | \
29 restore_terminal_title