Last active
February 19, 2024 22:05
-
-
Save bracke/e1bd15f1f63cab5e952396069a18a298 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 init.defaultBranch main | |
git config --global merge.conflictstyle zdiff3 | |
git config --global commit.verbose true | |
git config --global rerere.enabled true | |
git config --global core.pager delta | |
git config --global diff.algorithm histogram | |
git config --global transfer.fsckobjects true | |
git config --global fetch.fsckobjects true | |
git config --global receive.fsckobjects true | |
git config --global status.submoduleSummary true | |
git config --global submodule.recurse true | |
git config --global fetch.prune true | |
git config --global fetch.prunetags true | |
git config --global log.date iso | |
git config --global merge.keepbackup false | |
git config --global rebase.updateRefs true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment