Skip to content

Instantly share code, notes, and snippets.

@saponace
Created April 29, 2020 12:25
Show Gist options
  • Save saponace/f649bdb5bacc89a24b781d1db4c4e8eb to your computer and use it in GitHub Desktop.
Save saponace/f649bdb5bacc89a24b781d1db4c4e8eb to your computer and use it in GitHub Desktop.
Get git changes between two tags (or commits)
git log --pretty=format:%s v0.3.3..v0.4.0 | egrep -v "^Merge.*" | xargs -I '{}' echo "* {}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment