Created
April 2, 2012 21:08
-
-
Save mtalcott/2287210 to your computer and use it in GitHub Desktop.
git-diffcm
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 | |
echo "\033[36mCommits in $1 not in $2:"; echo | |
GIT_PAGER=cat git log "$2..$1" --relative-date | |
echo; echo "\033[36mCommits in $2 not in $1:"; echo | |
GIT_PAGER=cat git log "$1..$2" --relative-date |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment