Last active
November 22, 2022 16:23
-
-
Save Angelfirenze01/5879a7f02b2bdd9235ca6b536c834cde to your computer and use it in GitHub Desktop.
Git configuration setup.
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 "Angelfirenze" | |
git config --global user.email "[email protected]" | |
git config --global core.autocrlf true | |
git config --global push.default simple | |
git config --global pull.rebase true | |
git config --global rerere.enabled true | |
git config --global color.ui true | |
git config --global alias.s "status -s" | |
git config --global alias.lg "log --oneline --decorate --all --graph" | |
git config --global credential.helper wincred |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add Windows credentials command.