Skip to content

Instantly share code, notes, and snippets.

@markuspoerschke
Last active November 29, 2017 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markuspoerschke/2cb51947453d77d35e0a7d0fd8c287ef to your computer and use it in GitHub Desktop.
Save markuspoerschke/2cb51947453d77d35e0a7d0fd8c287ef to your computer and use it in GitHub Desktop.
Get Jira task-keys from commit messages.
# This will get all task keys that are relevant for the version 2.5.0 release
git log 2.4.0..2.5.0 --pretty=oneline | perl -ne '{ /(\w+)-(\d+)/ && print "$1-$2,"}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment