diff options
| author | Christian Cleberg <[email protected]> | 2025-02-25 22:22:53 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2025-02-25 22:22:53 -0600 |
| commit | 28a339eb325d5b33e69452b60ae8d014f9ee67b2 (patch) | |
| tree | d8192bdacb3e125e17da9332206e60092dd7171e | |
| parent | c8cd9bbfa2dbb772184bc25c85e7b41bccd92041 (diff) | |
| download | cleberg.net-28a339eb325d5b33e69452b60ae8d014f9ee67b2.tar.gz cleberg.net-28a339eb325d5b33e69452b60ae8d014f9ee67b2.tar.bz2 cleberg.net-28a339eb325d5b33e69452b60ae8d014f9ee67b2.zip | |
add .gitconfig
| -rw-r--r-- | .gitconfig | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..33cbe48 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,50 @@ +# clearly makes git better + +[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 + +# why the hell not? + +[help] + autocorrect = prompt +[commit] + verbose = true +[rerere] + enabled = true + autoupdate = true +[core] + excludesfile = ~/.gitignore +[rebase] + autoSquash = true + autoStash = true + updateRefs = true + +# a matter of taste (uncomment if you dare) + +[core] + # fsmonitor = true + # untrackedCache = true +[merge] + # (just 'diff3' if git version < 2.3) + # conflictstyle = zdiff3 +[pull] + # rebase = true |
