-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
73 lines (66 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[user]
name = "Javed Khan"
email = "[email protected]"
signingkey = BC71DFBE
[core]
excludesfile = ~/.gitignore
autocrlf = input
safecrlf = false
editor = nvim
[color]
ui = auto
[push]
default = tracking
[alias]
a = add
b = branch
co = checkout
ci = commit
ca = commit -am
cf = commit --amend --no-edit
d = diff
dc = diff --cached
dm = diff --diff-filter=M
f = stash save
st = status -sb
up = pull --no-edit
s = show
r = remote
t = push --set-upstream
pop = stash pop
app = stash apply
cp = ! git log --pretty=format:'%H' -n 1 | xclip -selection clipboard
up = pull --all --rebase --autostash
[url "https://github.com/"]
insteadOf = gh
[url "[email protected]:"]
insteadOf = bb
[commit]
gpgsign = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[core]
#pager = git-split-diffs --color | less -RFX
pager = diffr | less -R
[interactive]
difffilter = diffr
[include]
path = ~/.delta.themes.gitconfig
[core]
pager = delta
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[delta]
features = side-by-side line-numbers decorations
syntax-theme = gruvbox-light
[rerere]
enabled = false