* .config/git/config: Small tweaks.
[~bandali/configs] / .config / git / config
1 [user]
2 name = Amin Bandali
3 email = bandali@gnu.org
4 signingKey = BE6273738E616D6D1B3A08E8A21A020248816103
5
6 [tag]
7 gpgSign = true
8
9 # [format]
10 # signoff = true
11
12 [core]
13 autocrlf = input # CRLF -> LF on commit
14 editor = emacsclient -t
15 pager = "less"
16
17 [mailmap]
18 file = ~/.config/git/mailmap
19
20 [alias]
21 git = !exec git # handle nested git calls, e.g. git git status
22 aliases = config --get-regexp '^alias\\.'
23 a = add
24 s = status
25 sl = status --long
26 l = log
27 c = checkout
28 cb = checkout -b
29 b = branch
30 d = diff
31 f = fetch
32 r = rebase
33 p = pull
34 pr = pull --rebase
35 ps = push
36 psf = push --force
37 nmam = "!f() { notmuch show --format=raw $1 | git am -; }; f"
38 nmam3 = "!f() { notmuch show --format=raw $1 | git am -3 -; }; f"
39 gnu = config user.email 'bandali@gnu.org'
40 kelar = config user.email 'bandali@kelar.org'
41 sfl = config user.email 'amin.bandali@savoirfairelinux.com'
42 canonical = config user.email 'amin.bandali@canonical.com'
43
44 [color]
45 ui = auto
46 [color "status"]
47 added = green bold
48 changed = red bold
49 untracked = red bold
50 [color "branch"]
51 current = green bold
52 remote = magenta bold
53 [color "diff"]
54 new = green bold
55 old = red bold
56
57 # [status]
58 # # showUntrackedFiles = all
59 # short=true
60 # branch=true
61
62 [github]
63 user = bandali0
64
65 [sendemail]
66 smtpuser = bandali
67 smtpserver = fencepost.gnu.org
68 smtpserverport = 587
69 smtpencryption = tls
70 annotate = yes
71
72 [transfer]
73 fsckObjects = true
74
75 [init]
76 defaultBranch = main
77
78 [url "bandali@git.launchpad.net:"]
79 insteadof = lp:
80 [url "git@salsa.debian.org:gnome-team/"]
81 insteadof = pkg-gnome:
82 [url "git@salsa.debian.org:bandali/"]
83 insteadof = salsa-bandali:
84 [merge "dpkg-mergechangelogs"]
85 name = debian/changelog merge driver
86 driver = dpkg-mergechangelogs -m %O %A %B %A
87
88 [includeIf "gitdir:~/s/canonical/"]
89 path = ~/.config/git/config.canonical
90 [includeIf "gitdir:~/s/sfl/"]
91 path = ~/.config/git/config.sfl