Skip to content

Instantly share code, notes, and snippets.

@steevhise
Created January 14, 2015 17:30
Show Gist options
  • Save steevhise/c9f6acabfbd313090ba2 to your computer and use it in GitHub Desktop.
Save steevhise/c9f6acabfbd313090ba2 to your computer and use it in GitHub Desktop.
list all commits since last tag formatted to put in debian change log
git log `git describe --tags --abbrev=0`..HEAD --pretty=format:"* %s" --no-merges
@steevhise
Copy link
Author

and to convert to changelog format:

git log `git describe --tags --abbrev=0`..HEAD --pretty --no-merges --numstat --summary | git2cl

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment