Last active
January 3, 2016 23:48
-
-
Save jimjam88/8537015 to your computer and use it in GitHub Desktop.
Git config
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
[user] | |
name = James Morgan | |
email = [email protected] | |
[alias] | |
ci = commit | |
st = status -sb | |
co = checkout | |
di = diff | |
dis = diff --staged | |
br = branch | |
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative | |
cia = commit --amend | |
review = log HEAD --not @{u} --reverse -p | |
[core] | |
editor = vim | |
[color] | |
diff = auto | |
status = auto | |
branch = auto | |
ui = true | |
[merge] | |
tool = vimdiff | |
[push] | |
default = simple |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment