Skip to content

Instantly share code, notes, and snippets.

@magicianzrh
Last active August 29, 2015 14:22
Show Gist options
  • Save magicianzrh/c6814732a1dd4887411e to your computer and use it in GitHub Desktop.
Save magicianzrh/c6814732a1dd4887411e to your computer and use it in GitHub Desktop.
svn revert all shell for mac
# svn全部回滚
function svn_revert_all {
svn st | grep "^M" | cut -b 9- | while read FILENAME;
do
FILENAME=`echo ${FILENAME} | sed 's/ /\\\ /g'`
svn revert ${FILENAME}
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment