Skip to content

Instantly share code, notes, and snippets.

@toke
Last active August 29, 2015 14:16
Show Gist options
  • Save toke/a9e64c3be8bf628ef79b to your computer and use it in GitHub Desktop.
Save toke/a9e64c3be8bf628ef79b to your computer and use it in GitHub Desktop.
Print short git rev

Short Git-REV:

REV=$(git rev-parse HEAD)
echo ${REV::7}

or the correct way ;-) :

git rev-parse --short HEAD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment