1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00
dotfiles/.config/git/config

56 lines
1.2 KiB
Plaintext
Raw Normal View History

2016-03-31 02:03:55 +00:00
[user]
name = Joe Groocock
2018-03-29 09:15:16 +00:00
email = me@frebib.net
2016-04-02 18:45:25 +00:00
signingkey = CFBB6A86
2018-03-29 09:15:16 +00:00
[core]
autocrlf = input
excludesfile = $HOME/.config/git/gitignore
pager = /usr/share/git/diff-highlight/diff-highlight | $PAGER
[interactive]
diffFilter = /usr/share/git/diff-highlight/diff-highlight
[commit]
gpgsign = true
2018-03-29 09:15:16 +00:00
[push]
default = upstream
[pull]
rebase = true
[rebase]
autoStash = true
[log]
date = relative
[format]
pretty = format:%h %Cblue%ad%Creset %ae %Cgreen%s%Creset
[alias]
2017-11-15 23:49:09 +00:00
verbs = !git log --pretty=format:'%s' | cut -d \" \" -f 1 | sort | uniq -c | sort -nr
pushall = !git remote | xargs -L1 git push
2018-03-29 09:15:16 +00:00
count = !echo $(pwd) && git rev-list HEAD --count
unpushed = !git log --oneline @{u}..HEAD
2016-04-02 18:45:25 +00:00
[advice]
statusHints = false
pushUpdateRejected = false
[sendemail]
2018-03-29 09:15:16 +00:00
from = Joe Groocock <me@frebib.net>
smtpserver = smtp.zoho.com
smtpuser = me@frebib.net
smtpencryption = ssl
smtpserverport = 465
suppresscc = self
[diff]
algorithm = patience
[color]
ui = true
[color "diff"]
meta = cyan
frag = magenta
commit = yellow
old = red
new = green
whitespace = red 88 reverse
[color "diff-highlight"]
oldNormal = red
oldHighlight = red 88
newNormal = green
newHighlight = green 22
# vim: noet