Skip to content

Instantly share code, notes, and snippets.

@olivierodo
Last active May 8, 2018 01:17
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 olivierodo/21dd709dde500b92e2841bfd720a6453 to your computer and use it in GitHub Desktop.
Save olivierodo/21dd709dde500b92e2841bfd720a6453 to your computer and use it in GitHub Desktop.
git vlog : Get your Mac To Speak To You With The Commit Message

Setting up the alias through command line

$ git config --global alias.vlog '!git log --pretty=format:"%s from %an" -1 | say &'

Or in your .gitconfig

[alias]
    vlog = !git log --pretty=format:\"%s from %an\" -1 | say &

The blog post releated : Get your Mac To Speak To You With The Commit Message

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment