Created
February 24, 2024 14:30
-
-
Save b4tman/959e866aaafe9b1780c748b7a8f1d38c 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 --bool pull.rebase true | |
git config --global merge.conflictstyle zdiff3 | |
git config --global --bool rebase.autostash true | |
git config --global init.defaultBranch master | |
git config --global --bool commit.verbose true | |
git config --global --bool rerere.enabled true | |
git config --global help.autocorrect 10 | |
git config --global diff.algorithm histogram | |
git config --global --bool fetch.prune true | |
git config --global --bool fetch.prunetags true | |
git config --global --bool push.followtags true | |
git config --global --bool core.longpaths true | |
git config --global http.postBuffer 1048576000 | |
git config --global core.quotePath false | |
git config --global core.autocrlf false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment