Created
April 25, 2011 09:26
-
-
Save napsy/940308 to your computer and use it in GitHub Desktop.
Quickly switch svn repository URL
This file contains hidden or 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
#!/bin/bash | |
if [ $# -eq 0 ] | |
then | |
echo "$0 [home|office]" | |
exit | |
fi | |
if [ $1 == "home" ] | |
then | |
OLD="XXX" | |
NEW="YYY" | |
elif [ $1 == "office" ] | |
then | |
OLD="YYY" | |
NEW="XXX" | |
fi | |
echo "SVN switching from $OLD to $NEW" | |
svn switch --relocate https://$OLD/trunk https://$NEW/trunk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment