Last active
February 4, 2019 16:12
-
-
Save Sorbog/6119c55f3d461402919919c53b231f35 to your computer and use it in GitHub Desktop.
Git config
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
git config --global user.name '{FIRSTNAME LASTNAME}'; | |
git config --global user.email {EMAIL}; | |
git config --global core.autocrlf input; | |
git config --global credential.helper 'cache --timeout=3600'; | |
git config --global branch.autosetuprebase always; | |
git config --global push.default current; | |
git config --global color.ui true; | |
git config --global core.fileMode false; | |
git config --global core.ignorecase false; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment