Last active
August 24, 2018 18:25
-
-
Save ryangraffy/d449cef6cbf5ab4a3ec2ac86bc0a85a5 to your computer and use it in GitHub Desktop.
Find JIRA ids (e.g., HI5R-123) in git log between tags (e.g., "BTCM-211 and "BTCM-217")
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
git log origin/master..origin/release | grep -Eo "(HI5R|ITS)-\d+" | sort -u |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment