diff options
| author | 2025-02-26 12:23:16 +0300 | |
|---|---|---|
| committer | 2025-02-26 12:23:16 +0300 | |
| commit | 4bff3778850399b08b7bddb06db877e4604ffcf4 (patch) | |
| tree | e2df48a12aa06f266e375f81f67dc2c9c69a63d9 /git | |
| parent | fix gitconfig (diff) | |
| download | dotfiles-4bff3778850399b08b7bddb06db877e4604ffcf4.tar.gz dotfiles-4bff3778850399b08b7bddb06db877e4604ffcf4.tar.bz2 dotfiles-4bff3778850399b08b7bddb06db877e4604ffcf4.tar.xz dotfiles-4bff3778850399b08b7bddb06db877e4604ffcf4.zip | |
Обновление gitconfig
Diffstat (limited to '')
| -rw-r--r-- | git/config | 75 |
1 files changed, 48 insertions, 27 deletions
@@ -10,12 +10,19 @@ [http] sslVerify = false +[column] + ui = auto + [commit] gpgsign = true verbose = true [branch] autosetuprebase = always + sort = -committerdate + +[tag] + sort = version:refname [help] autocorrect = 1 @@ -38,6 +45,8 @@ [rebase] autoStash = true + autoSquash = true + updateRefs = true [pull] rebase = true @@ -46,41 +55,23 @@ [fetch] prune = true pruneTags = true + all = true output = full +[push] + default = simple + autoSetupRemote = true + followTags = true + +[merge] + conflictstyle = zdiff3 + [core] preloadindex = true excludesFile = ~/.gitignore trustctime = false commitGraph = true -[color] - ui = auto - -[color "diff"] - meta = yellow bold - commit = green bold - frag = magenta bold - old = red bold - new = green bold - whitespace = red reverse - -[color "diff-highlight"] - oldNormal = red bold - oldHighlight = red bold 52 - newNormal = green bold - newHighlight = green bold 22 - -[color "branch"] - current = yellow reverse - local = yellow - remote = green - -[color "status"] - added = yellow - changed = green - untracked = cyan - [diff] indentHeuristic = true algorithm = histogram @@ -91,6 +82,7 @@ [rerere] enabled = true + autoupdate = true [pager] color = true @@ -128,5 +120,34 @@ [include] path = .gitconfig.local + [gpg] format = ssh + +[color] + ui = auto + +[color "diff"] + meta = yellow bold + commit = green bold + frag = magenta bold + old = red bold + new = green bold + whitespace = red reverse + +[color "diff-highlight"] + oldNormal = red bold + oldHighlight = red bold 52 + newNormal = green bold + newHighlight = green bold 22 + +[color "branch"] + current = yellow reverse + local = yellow + remote = green + +[color "status"] + added = yellow + changed = green + untracked = cyan + |
