Skip to content

Instantly share code, notes, and snippets.

@joshuabaker
Created November 27, 2016 15:25
Show Gist options
  • Save joshuabaker/a82c45b03d53771bd46b16af3f45ade0 to your computer and use it in GitHub Desktop.
Save joshuabaker/a82c45b03d53771bd46b16af3f45ade0 to your computer and use it in GitHub Desktop.
Helpful git commands.
# Get latest tag
git describe --abbrev=0 --tags
# Get latest commit
git rev-parse HEAD
# Get latest commit author
git --no-pager show -s --format="%aN <%aE>" HEAD
# Get latest commit message (trimmed)
git log --format=%B -n 1 HEAD | xargs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment