Skip to content

Instantly share code, notes, and snippets.

@yourtion
Last active July 3, 2017 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yourtion/aa773740b9e0e5fe6cbbbcc8aeb7360f to your computer and use it in GitHub Desktop.
Save yourtion/aa773740b9e0e5fe6cbbbcc8aeb7360f to your computer and use it in GitHub Desktop.
Get Last Git commit log
# Simple
git log --oneline -n 1
# val
log=`git log --oneline -n 1` && echo $log
# Only Mesg
log=`git log --oneline -n 1` && $log=${log:8} && echo $log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment