Skip to content

Instantly share code, notes, and snippets.

@stephenharris
Last active December 16, 2016 11:52
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 stephenharris/caa633de4f51c0e4436b to your computer and use it in GitHub Desktop.
Save stephenharris/caa633de4f51c0e4436b to your computer and use it in GitHub Desktop.
An in-progress collection of useful git 'shortcuts' (alias)

.gitconfig

[alias]
        # A simplified graph of branches**
        branchtree = log --oneline --decorate --all --graph --simplify-by-decoration
        
        # Search commit messages
        logsearch = !sh -c 'git log -i --all --grep=$1' -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment