Last active
August 29, 2015 14:05
-
-
Save seansullivan/7a7f4503bf8538a777bd to your computer and use it in GitHub Desktop.
.gitconfig
This file contains hidden or 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 = Sean Sullivan | |
email = myemail | |
[color] | |
diff = auto | |
status = auto | |
branch = auto | |
[alias] | |
st = status | |
ci = commit | |
br = branch -v -a | |
co = checkout | |
df = diff | |
log = log -p | |
logp = log --pretty=oneline | |
[core] | |
editor = nano | |
[rerere] | |
enabled = 1 | |
[merge] | |
log = true | |
[branch] | |
autosetuprebase = always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment