Last active
December 15, 2015 15:19
-
-
Save blork/5280993 to your computer and use it in GitHub Desktop.
A shell script which generates a nicely formatted change log between two git commit hashes. To be added as a custom action in Sourcetree.
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
#! /bin/bash | |
git log $1...$2 --pretty=format:'• %s' --reverse | grep -v Merge |
Author
blork
commented
Mar 31, 2013
Worth noting that the shell script needs execute privileges.
chmod +x git-changelog.sh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment