-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
37 lines (37 loc) · 1.07 KB
/
.gitconfig
File metadata and controls
37 lines (37 loc) · 1.07 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
[alias]
co = checkout
st = status
ci = commit -v
lgg = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %C(cyan)%G?%C(dim white) %an%C(reset)%C(bold yellow)%d%C(reset)'
lg = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %C(cyan)%G?%C(dim white) %an%C(reset)%C(bold yellow)%d%C(reset)' --first-parent -10
br = branch
au = add -u
sup = submodule update --init --recursive
puf = push --force-with-lease
[push]
default = current
[pull]
rebase = true
ff = only
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[fetch]
prune = true
[commit]
gpgsign = true
[gpg]
format = ssh
program = gpg
[merge]
ff = false
[include]
path = ~/.gitconfig.user
[rebase]
autoStash = true
[init]
defaultBranch = main
[branch]
sort = -committerdate