gitconfig (1065B)
1 [user] 2 email = ed@edryd.org 3 name = Ed van Bruggen 4 signingkey = DC8DC5F3245CD364 5 [github] 6 user = edvb 7 [push] 8 default = matching 9 [help] 10 autocorrect = 1 11 [color] 12 ui = auto 13 diff = auto 14 status = auto 15 branch = auto 16 interactive = auto 17 grep = auto 18 [alias] 19 la = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=relative 20 ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat 21 ls = "!git la -10" 22 l = "!git ll -1" 23 lsa = shortlog -sn 24 diffl = diff --cached HEAD^ 25 diffc = diff --cached 26 stat = diff --stat 27 statc = "!git diffc --stat" 28 statl = "!git diffl --stat" 29 s = stash list 30 A = add -A . 31 c = commit 32 p = push 33 slp = send-email --subject-prefix="${PWD##*/}][PATCH" --to hackers@suckless.org 34 [pager] 35 diff = diff-highlight | less 36 [credential] 37 helper = cache --timeout=43200 38 [merge] 39 tool = vimdiff 40 [commit] 41 verbose = true 42 gpgsign = true 43 [sendemail] 44 smtpEncryption = tls 45 smtpServer = smtp.uw.edu 46 smtpUser = edvb@uw.edu 47 smtpServerPort = 587 48 [init] 49 defaultBranch = main