This file contains a .gitconfig I am bringing from computer to computer.
Just append the content of .gitconfig to your local ~/.gitconfig.
| [column] | |
| ui = auto | |
| [branch] | |
| sort = -committerdate | |
| [tag] | |
| sort = version:refname | |
| [init] | |
| defaultBranch = main | |
| [diff] | |
| algorithm = histogram | |
| colorMoved = plain | |
| mnemonicPrefix = true | |
| renames = true | |
| [push] | |
| default = simple | |
| autoSetupRemote = true | |
| followTags = true | |
| [fetch] | |
| prune = true | |
| pruneTags = true | |
| all = true | |
| [help] | |
| autocorrect = prompt | |
| [commit] | |
| verbose = true | |
| [rerere] | |
| enabled = true | |
| autoupdate = true | |
| [core] | |
| excludesfile = ~/.gitignore | |
| editor = vim | |
| [rebase] | |
| autoSquash = true | |
| autoStash = true | |
| updateRefs = true |