Created
February 28, 2013 22:44
-
-
Save groveriffic/5060783 to your computer and use it in GitHub Desktop.
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 | |
git checkout master | |
git pull | |
git branch --remotes --merged | grep origin > .master_merged | |
git checkout release-staging | |
git pull | |
git branch --remotes --merged | grep origin > .staging_merged | |
diff .master_merged .staging_merged | |
rm .master_merged .staging_merged |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment