Skip to content

Instantly share code, notes, and snippets.

@wizardishungry
Created October 22, 2008 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wizardishungry/18680 to your computer and use it in GitHub Desktop.
Save wizardishungry/18680 to your computer and use it in GitHub Desktop.
#!/bin/sh
VERS='master 1.0 1.1 1.2'
source ~/.bashrc
cd ~/Projects/symfony
for ver in $VERS
do
echo $ver;
git checkout $ver || exit
sleep 2;
git svn rebase
sleep 2;
done
git push origin $VERS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment