Last active
August 17, 2021 17:35
-
-
Save srhopkins/9a9f85d08a6420b1287368aeac1d2520 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
# curl -s https://gist.githubusercontent.com/srhopkins/9a9f85d08a6420b1287368aeac1d2520/raw/.gitconfig | |
[user] | |
email = [user_email] | |
name = [user_full_name] | |
[core] | |
excludesFile = ~/.gitignore_global | |
[pull] | |
rebase = true | |
[fetch] | |
prune = true | |
[diff] | |
colorMoved = zebra | |
[rebase] | |
autostash = true | |
autoSquash = true | |
[push] | |
default = current | |
[branch] | |
autoSetupMerge = always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment