Created
September 10, 2012 19:57
-
-
Save cbrammer/3693441 to your computer and use it in GitHub Desktop.
Be sure to set as exec (chmod +x)
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/sh | |
git checkout $1 | |
git pull origin $1 | |
git checkout $2 | |
git pull origin $2 | |
git merge $1 | |
git push origin $2 | |
git checkout $1 |
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/sh | |
set -e | |
set -x | |
export B1=$1 | |
export B2=$2 | |
cd Achievements;crossmerge $B1 $B2;cd ..; | |
cd admin;crossmerge $B1 $B2;cd ..; | |
cd api;crossmerge $B1 $B2;cd ..; | |
cd equipment;crossmerge $B1 $B2;cd ..; | |
cd sketch;crossmerge $B1 $B2;cd ..; | |
cd tempest;crossmerge $B1 $B2;cd ..; | |
cd website-main;crossmerge $B1 $B2;cd ..; | |
cd workout-manager;crossmerge $B1 $B2;cd ..; | |
cd log-workout;crossmerge $B1 $B2;cd ..; | |
cd workout-translator;crossmerge $B1 $B2;cd ..; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment