-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.gitconfig
More file actions
71 lines (55 loc) · 929 Bytes
/
example.gitconfig
File metadata and controls
71 lines (55 loc) · 929 Bytes
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
[user]
name =
username =
email =
signingkey =
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
defaultBranch = main
[apply]
whitespace = fix
[pull]
rebase = false
[commit]
gpgsign = true
[tag]
forceSignAnnotated = true
[help]
autocorrect = 1
[color]
branch = auto
diff = auto
status = auto
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red
new = green
[color "status"]
added = yellow
changed = green
untracked = cyan
[merge]
ff = only
log = true
[fetch]
prune = true
[diff]
colorMoved = zebra
renames = copies
[push]
default = simple
[alias]
cm = commit -m --no-edit
lg = log --pretty=format:'%Cred%h%Creset %C(bold)%cr%Creset %Cgreen<%an>%Creset %s' --max-count=30
st = status -sb
ps = push