Created
November 6, 2012 11:54
-
-
Save AlexDenisov/4024238 to your computer and use it in GitHub Desktop.
Useful aliases for SVN
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias subadd="svn st | grep '^?' | sed 's/^? *\(.*\)/\"\1\"/g' | sed 's/@\(.*\)/@\1@/g' | xargs svn add" | |
alias subrm="svn st | grep '^!' | sed 's/^! *\(.*\)/\"\1\"/g' | sed 's/@\(.*\)/@\1@/g' | xargs svn rm" | |
alias subst='svn st' | |
alias subci='svn ci' | |
alias subup='svn up' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment