Created
July 26, 2017 03:18
-
-
Save jenux/2c200d4f25df250e3cd8c11414bc10f0 to your computer and use it in GitHub Desktop.
get committed feature name between dates
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 --oneline --decorate --graph --since “<start date>" --until “<end date>" --author “<Author name> <Author email ID>" | awk '{print $3}' | grep "OPUS-*" | |
| # One example is, | |
| $ git log --oneline --decorate --graph --since "MAY 08 2017" --until "MAY 12 2017" --author "Jenux <[email protected]>" | awk '{print $3}' | grep "OPUS-*” |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment