Last active
January 19, 2017 09:38
-
-
Save MartinAhrer/5fda942c2f358f389819def0226cb35c to your computer and use it in GitHub Desktop.
git setup on new accounts
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 core.autocrlf input | |
git config --global user.email "<EMAIL-ADDRESS>" | |
git config --global user.name "Martin Ahrer" | |
git config --global push.default simple | |
git config --global branch.autosetuprebase always | |
git config --global credential.helper cache # eventually use osxkeychain |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment