-
-
Save trekdemo/2575872 to your computer and use it in GitHub Desktop.
Differences in commits between two branches (on rackerhacker.com)
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
MASTER=`git log --pretty=format:'%H' master | sort` | |
DEV=`git log --pretty=format:'%H' development | sort` | |
for i in `diff <(echo "${MASTER}") <(echo "${DEV}") | grep '^>' | sed 's/^> //'`; | |
do | |
git --no-pager log -1 --oneline $i; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment