Skip to content

Instantly share code, notes, and snippets.

@riyaz
Last active October 19, 2016 03:38
Show Gist options
  • Save riyaz/ed7ce3174f2edbbcad94e77bf6426a8b to your computer and use it in GitHub Desktop.
Save riyaz/ed7ce3174f2edbbcad94e77bf6426a8b to your computer and use it in GitHub Desktop.
Simple git log for release notes
git log --pretty=format:'*%C(yellow)%d%Creset %s %C(bold blue)<%an>%Creset' --abbrev-commit --no-merges

Pro tip : Create git alias in .gitconfig for easy access like git lr

[alias]
    lr = log --pretty=format:'*%C(yellow)%d%Creset %s %C(bold blue)<%an>%Creset' --abbrev-commit --no-merges
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment