Last active
December 16, 2015 05:58
-
-
Save denislutz/5388146 to your computer and use it in GitHub Desktop.
script to switch branch or tag on several folders
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
#!/bin/bash | |
function switch_to_version_in_folder { | |
cd $1 | |
svn switch $2 | |
} | |
switch_to_version_in_folder /path/to/project/that/you/want/toswitch https://yoursvndoamin.com/yoursvnpathtoproject |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment