-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
55 lines (55 loc) · 1.08 KB
/
gitconfig
File metadata and controls
55 lines (55 loc) · 1.08 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
[core]
autocrlf = input
editor = "cursor --wait"
excludesfile = ~/.gitignore
[color]
ui = auto
[commit]
template = ~/.gitmessage
gpgsign = true
[alias]
lg = log --graph --all --tags --branches --topo-order --oneline --decorate --pretty=format:'%C(yellow)%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
co = checkout
st = status
ci = commit
br = branch
unstage = reset HEAD --
last = log -1 HEAD
uncommit = reset HEAD~
[init]
defaultBranch = main
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[push]
autoSetupRemote = true
[diff]
colorMoved = default
algorithm = histogram
submodule = log
[branch]
sort = -committerdate
[tag]
sort = taggerdate
[merge]
conflictStyle = zdiff3
[transfer]
fsckobjects = true
[fetch]
fsckobjects = true
[receive]
fsckobjects = true
[submodule]
recurse = true
[status]
submoduleSummary = true
[credential]
helper = cache --timeout=604800
[gpg]
format = ssh
[gpg "ssh"]
allowedSignersFile = ~/.ssh/allowed_signers
[http]
postBuffer = 1048576000