-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
52 lines (44 loc) · 1.39 KB
/
.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
[alias]
aa = add -A
amend = commit --amend
b = branch
co = checkout
d = diff
dc = diff --cached
dh = diff --cached HEAD^
ds = diff --cached --stat
fat = fetch --all --tags
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"
lm = log --author="[email protected]" --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
r = restore
ri = rebase -i
rs = restore --staged
s = status
quick-stats = /usr/local/bin/git-quick-stats
pat = pull --all --tags
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = true
pager = true
[core]
pager = delta
excludesFile = ~/.gitignore
editor = vim
[credential]
helper = cache --timeout=36000
[delta]
plus-color = "#012800"
minus-color = "#340001"
syntax-theme = Monokai Extended
[interactive]
diffFilter = delta --color-only
[merge]
tool = kdiff3
[user]
name = Christophe '116' Loiseau
email = [email protected]