-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgitconfig
More file actions
98 lines (79 loc) · 1.81 KB
/
gitconfig
File metadata and controls
98 lines (79 loc) · 1.81 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[core]
excludesfile = ~/.gitignore_global
editor = vim
pager = delta
[alias]
alias = !git config --get-regexp alias
a = add
aa = add --all
co = checkout
com = commit -v
comm = commit -m
coma = commit -a -m
ac = !git add --all && git commit -v
acm = !git add --all && git commit -m
b = branch
d = diff
dc = diff --cached
dns = diff --name-status
f = fetch
s = status -sb
ss = status
pl = pull
ps = push
l = log --stat --summary --decorate
lp = log --stat --summary --decorate -p
lg = log --graph --date=short --pretty=format:'%Cgreen%h %Creset%cd %Cblue%cn %Cred%d %Creset%s'
lgr = log --graph --date=short --oneline --remotes
lgn = log --graph --date=short --oneline --name-status
lgnr = log --graph --date=short --oneline --name-status --remotes
cancel = reset --soft HEAD^
unstage = reset HEAD --
[init]
defaultBranch = main
[column]
ui = auto
[branch]
sort = -committerdate
[push]
default = simple
autoSetupRemote = true
followTags = true
[fetch]
prune = true
pruneTags = true
all = true
[commit]
verbose = true
[rerere]
enabled = true
autoupdate = true
[help]
autocorrect = prompt
[color]
diff = auto
status = auto
branch = auto
ui = auto
[interactive]
diffFilter = delta --color-only
[diff]
algorithm = histogram
colorMoved = plain
mnemonicPrefix = true
renames = true
[delta]
navigate = true
[diff "jupyternotebook"]
command = git-nbdiffdriver diff
[merge "jupyternotebook"]
driver = git-nbmergedriver merge %O %A %B %L %P
name = jupyter notebook merge driver
[difftool "nbdime"]
cmd = git-nbdifftool diff \"$LOCAL\" \"$REMOTE\"
[mergetool "nbdime"]
cmd = git-nbmergetool merge \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\"
[filter "lfs"]
required = true
smudge = git-lfs smudge -- %f
clean = git-lfs clean -- %f