Skip to content

Instantly share code, notes, and snippets.

@jenux
Created July 26, 2017 03:18
Show Gist options
  • Select an option

  • Save jenux/2c200d4f25df250e3cd8c11414bc10f0 to your computer and use it in GitHub Desktop.

Select an option

Save jenux/2c200d4f25df250e3cd8c11414bc10f0 to your computer and use it in GitHub Desktop.
get committed feature name between dates
$ 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