-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig
48 lines (37 loc) · 770 Bytes
/
config
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
[alias]
br = branch
bl = blame -w -C -C -C -L
cm = commit
co = checkout
lg = log --oneline --decorate --all --graph
pf = push --force-with-lease
ps = push --signed
st = status
sh = stash --all
[branch]
sort = -committerdate
[core]
editor = code --wait
untrackedCache = true
[color]
ui = true
[diff]
tool = code-difftool
[difftool "code-difftool"]
cmd = code --wait --diff $LOCAL $REMOTE
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
defaultBranch = main
[merge]
tool = code-mergetool
[mergetool "code-mergetool"]
cmd = code --wait --merge $REMOTE $LOCAL $BASE $MERGED
[rerere]
enabled = true
[user]
name = InSuperposition
email = [email protected]