home/.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
[core] pager = delta [user] email = pg@prithu.dev name = Prithu Goswami signingkey = A17AFDEA2EF9A76AA868285DE2AB251EDB8945E5 [alias] lg1 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all lg = !"git lg1" sra = !"git log --format=%H -n 10 --all | xargs git show" sr = !"git log --format=%H -n 10 | xargs git show" pushall = !"git remote | xargs -L1 git push" st = status --short ci = commit ca = commit --amend caa = commit -a --amend br = branch co = checkout df = diff ; up = pull --rebase [pull] rebase = false [init] defaultBranch = master [interactive] diffFilter = delta --color-only [delta] navigate = true # use n and N to move between diff sections [merge] conflictstyle = diff3 [diff] colorMoved = default