Created
November 30, 2015 23:29
-
-
Save benmj/880206e713393a6dd470 to your computer and use it in GitHub Desktop.
Git configuration with useful aliases
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat ~/.gitconfig | |
[gui] | |
recentrepo = C:/buildium/src/buildiumcode | |
[user] | |
email = [email protected] | |
name = Ben Jacobs | |
[core] | |
editor = vim | |
autocrlf = false | |
[push] | |
default = simple | |
[merge] | |
tool = vimdiff2 | |
[alias] | |
recent = for-each-ref --sort='-authordate:iso8601' --format=' %(authordate:relative)%09%(refname:short)' refs/heads |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment