-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
64 lines (50 loc) · 927 Bytes
/
.gitconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[user]
name = Jakub Jindra
email = [email protected]
signingkey = 390A9AE3
[includeIf "gitdir:~/cklb/"]
path = ~/cklb/.gitconfig
[instaweb]
local = true
httpd = python
[alias]
tree = log --graph --decorate --abbrev-commit
ign = ls-files -o -i --exclude-standard
st = status
ci = commit
br = branch
co = checkout
dt = difftool
pullr = pull --rebase
[color]
grep = auto
branch = auto
diff = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
[core]
pager = $PAGER --passthrough
[diff]
tool = vimpager
[difftool]
tool = vimpager
prompt = false
[merge]
tool = vimpager
[push]
default = current
[diff "gpg"]
textconv = gpg --no-tty --decrypt
[protocol]
version = 2