-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
35 lines (35 loc) · 849 Bytes
/
.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
[alias]
a = add
c = commit
cm = commit -m
co = checkout
cob = checkout -b
cp = cherry-pick
p = push
pl = pull
rh = reset --hard
s = status
recent = "!git for-each-ref --sort=committerdate refs/heads/ --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(color:red)%(objectname:short)%(color:reset) - %(contents:subject) - %(authorname) (%(color:green)%(committerdate:relative)%(color:reset))'"
[core]
editor = nvim
pager = bat
[diff]
colorMoved = zebra
[fetch]
prune = true
[http]
postBuffer = 524288000
[hub]
protocol = https
[pull]
rebase = true
[push]
autoSetupRemote = true
[user]
email = [email protected]
name = botre
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process