-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
60 lines (60 loc) · 1.2 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
[user]
name = lion-man44
email = [email protected]
[gui]
tabsize = 2
[alias]
i = init
conf = config
s = status
b = branch
ba = branch -a
br = browse
f = fetch
df = diff
dfc = diff --cached
g = grep
r = rebase
sh = show
st = stash
stl = stash list
ci = commit
co = checkout
sw = switch
l = log --graph
lo = log origin
la = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold white)― %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative
lp = log --graph -p
[color]
status = auto
branch = auto
diff = auto
grep = auto
[pager]
log = diff-highlight | less
show = diff-highlight | less
diff = diff-highlight | less
[core]
editor = vim
quotepath = false
pager = less
[merge]
tool = vimdiff
squash = true
[fetch]
prune = true
[pull]
rebase = true
[init]
defaultBranch = main
[credential]
helper = /usr/local/share/gcm-core/git-credential-manager
[rebase]
autosquash = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[credential "https://dev.azure.com"]
useHttpPath = true