X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=.gitconfig;h=6ad94d24c7e4ff78333c00c408cb005ee29f5293;hb=6f92aeeb2e854f3daf6acd733ddfedcda42e7c8f;hp=27b66941dcb0c0e332e05efe1848e4ecf43093c6;hpb=b383b052500db48e7604a1504930d3b7cd9102f7;p=home.git diff --git a/.gitconfig b/.gitconfig index 27b6694..6ad94d2 100644 --- a/.gitconfig +++ b/.gitconfig @@ -1,10 +1,21 @@ [user] name = Mike Frysinger email = vapier@gentoo.org +# signingkey = 0xE837F581 + +[advice] + detachedHead = false + skippedCherryPicks = false + +[core] + abbrev = 12 + pager = less -FRMX --tabs 4 -#10 + [color] ui = auto diff = auto status = auto + [color "diff"] old = red bold new = green bold @@ -12,25 +23,65 @@ frag = yellow bold whitespace = normal green meta = magenta + +[diff] + renames = true + +[fetch] + parallel = 4 + +# Settings used by Chromium's `git cl`. The defaults are brain-dead. +[gerrit] + skip-ensure-authenticated = true + squash-uploads = false + +[pager] + diff = diff-highlight | less + log = diff-highlight | less + show = diff-highlight | less + +[protocol] + # https://opensource.googleblog.com/2018/05/introducing-git-protocol-version-2.html + version = 2 + +[pull] + ff = only + [push] default = current + [alias] a = add - ab = abandon + am-a = am --abort + am-c = am --continue ar = archive - b = branch + b = branch -v bi = bisect cfg = config ci = commit + cia = commit -a + ciaf = commit -a --fixup + ciam = commit --amend + ciaam = commit --amend -a + cif = commit --fixup co = checkout - cp = cherry-pick + cp = cherry-pick --ff + cp-a = cherry-pick --abort + cp-c = cherry-pick --continue + cp-x = cherry-pick -x d = diff - dl = download + dc = diff --cached + desc = describe f = fetch - fp = format-patch + fp = format-patch -C -M + g = grep + h = help l = log - m = merge + lf = log --format= --name-only + lp = log -p + m = merge --log=100 --no-stat rb = rebase + rb-d = rebase --committer-date-is-author-date rb-a = rebase --abort rb-c = rebase --continue rb-i = rebase --interactive @@ -38,14 +89,39 @@ rl = rev-list se = send-email -C -M sm = submodule - st = status + st = status -s t = tag - up = upload + vl = log --pretty='format:%Cred%h%Creset %Cgreen%ai%Creset %s%C(bold)%C(yellow)%d%Creset' + +[tag] + sort = version:refname + [merge] conflictstyle = diff3 + [rebase] autosquash = true + +[http] + cookiefile = ~/.gitcookies + +[transfer] + # https://groups.google.com/forum/m/#!topic/binary-transparency/f-BI4o8HZW0 + fsckobjects = true + +[init] + defaultBranch = main + +[merge "merge-changelog"] + name = GNU-style ChangeLog merge driver + driver = /usr/bin/git-merge-changelog %O %A %B + [sendemail] chainreplyto = false + confirm = always suppressfrom = true + suppresscc = author smtpserver = localhost:1111 + transferEncoding = 8bit +# composeencoding = utf-8 + assume8bitEncoding = 8bit