Created
May 26, 2015 03:28
-
-
Save wdjunaidi/7e15ef3f7963c965141e to your computer and use it in GitHub Desktop.
Grab first word in commits between two ranges to extract defect number
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
git log --pretty=tformat:%s <commit>..<commit> | cut -f1 -d' ' | cut -f1 -d':' | sort | uniq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment