diff options
| author | Robert Günzler <r@gnzler.io> | 2020-04-10 14:04:52 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2020-04-10 14:04:52 +0200 |
| commit | c55d93fcce6d2d48f73c86b2c256d50926029e01 (patch) | |
| tree | 0203c02acc3dfaa10789de53986d4e47fa899265 /.config/git/config | |
| parent | a2872e0159c946aca4dad620dbdca870ae9c128f (diff) | |
git: cleanup config
Diffstat (limited to '.config/git/config')
| -rw-r--r-- | .config/git/config | 46 |
1 files changed, 19 insertions, 27 deletions
diff --git a/.config/git/config b/.config/git/config index 1a8a5a1..ff103cd 100644 --- a/.config/git/config +++ b/.config/git/config @@ -85,11 +85,6 @@ # Detect whitespace errors when applying a patch whitespace = fix -[color] - # Use colors in Git commands that are capable of colored output when - # outputting to the terminal. (This is the default setting in Git ≥ 1.8.4.) - ui = auto - [color "branch"] current = yellow reverse local = yellow @@ -106,9 +101,6 @@ changed = green untracked = cyan -[credential] - # helper = osxkeychain - [diff] # Detect copies as well as renames renames = copies @@ -192,28 +184,28 @@ [http] sslverify = true - cookiefile = /home/robert/.gitcookies + cookiefile = /home/robert/.gitcookies [trailer "sign"] - key = "Signed-off-by" - ifmissing = add - ; command = bash -c 'echo \"$(git config user.name) <${$(git config user.signemail):-$(git config user.email)}>\"' - command = echo \"`git config user.name` <`git config user.signemail || git config user.email`>\" - where = end + key = "Signed-off-by" + ifmissing = add + ; command = bash -c 'echo \"$(git config user.name) <${$(git config user.signemail):-$(git config user.email)}>\"' + command = echo \"`git config user.name` <`git config user.signemail || git config user.email`>\" + where = end [trailer "changetype"] - key = "Change-type" - ifmissing = add - ifexists = doNothing - where = start + key = "Change-type" + ifmissing = add + ifexists = doNothing + where = start [trailer "connects"] - key = "Connects-to" - ifmissing = add - where = start + key = "Connects-to" + ifmissing = add + where = start [trailer "depends"] - key = "Depends-on" - ifmissing = add - where = start + key = "Depends-on" + ifmissing = add + where = start [trailer "changelog"] - key = "Changelog-entry" - ifmissing = add - where = start + key = "Changelog-entry" + ifmissing = add + where = start |