-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig.settings
53 lines (53 loc) · 1.18 KB
/
.gitconfig.settings
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
[log]
decorate = short
[color]
ui = auto
interactive = auto
[pager]
status = false
show-branch = true
[alias]
br = branch
ci = commit
cl = clone
co = checkout
lt = describe --tags --abbrev=0
st = status -s
ls = log --pretty=format:\"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]\" --decorate
ll = log --pretty=format:\"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]\" --decorate --numstat
lds = log --pretty=format:\"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]\" --decorate --date=short
sl = stash list
sa = stash apply
ss = stash save
[format]
numbered = auto
[core]
legacyheaders = false
[repack]
usedeltabaseoffset = true
[push]
default = matching
[credential]
helper =
helper = /usr/local/share/gcm-core/git-credential-manager
[credential "https://dev.azure.com"]
useHttpPath = true
[push]
default = matching
[core]
ignorecase = false
legacyheaders = false
editor = code --wait --new-window
[diff]
tool = vscode
[difftool "vscode"]
cmd = code --wait --diff $LOCAL $REMOTE
[merge]
tool = vscode
[mergetool "vscode"]
cmd = code --wait $MERGED
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true