Created
August 23, 2018 19:46
-
-
Save AArnott/548c6103701890d1c0e2fd06fe3f9c32 to your computer and use it in GitHub Desktop.
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
[alias] | |
co = checkout | |
ci = commit | |
st = status | |
p = push origin -u HEAD | |
goback = reset --hard HEAD~1 | |
[core] | |
safecrlf = warn | |
preloadindex = true | |
fscache = true | |
autocrlf = true | |
[push] | |
default = simple | |
[user] | |
email = [email protected] | |
name = Andrew Arnott | |
signingkey = A9B9910CDCCDA441 | |
[rebase] | |
autoSquash = true | |
[rerere] | |
enabled = true | |
[fetch] | |
prune = true | |
[commit] | |
gpgsign = true | |
[pull] | |
rebase = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment