diff options
| author | mhsn <mail@mhsn.net> | 2025-10-02 16:33:32 +0100 |
|---|---|---|
| committer | mhsn <mail@mhsn.net> | 2025-10-02 16:33:32 +0100 |
| commit | c615b643c9d4e1206a491b87439f7fe71a862d12 (patch) | |
| tree | 1241811461f380f7f0c5b6a84cd6ab709e861520 | |
| parent | a222953dde3dc78dac94f6855a12d8ab76f383cb (diff) | |
| download | dotfiles-c615b643c9d4e1206a491b87439f7fe71a862d12.tar.gz dotfiles-c615b643c9d4e1206a491b87439f7fe71a862d12.zip | |
gitconfig
| -rw-r--r-- | .config/git/config | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.config/git/config b/.config/git/config new file mode 100644 index 0000000..9483e58 --- /dev/null +++ b/.config/git/config @@ -0,0 +1,33 @@ +[alias] + adog = log --all --oneline --graph --format='%C(cyan)%h %C(magenta)%an%C(auto)%d %<(80,trunc)%s' +[branch] + sort = -committerdate +[column] + ui = auto +[commit] + gpgsign = true + verbose = true +[core] + editor = nvim +[diff] + algorithm = histogram + colorMoved = plain + mnemonicPrefix = true + renames = true +[help] + autocorrect = immediate +[init] + defaultBranch = master +[merge] + conflictstyle = zdiff3 +[pull] + rebase = true +[push] + autoSetupRemote = true +[tag] + gpgsign = true + sort = version:refname +[user] + email = mail@mhsn.net + name = mhsn + signingkey = BABE9F12A20922D8C71A7499D63E2C6BDA5DDE1A |
