-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
54 lines (43 loc) · 873 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[user]
name = Cristian Adamo
email = <email>
[alias]
co = checkout
st = status
rh = reset HEAD
rhh = reset --hard HEAD
pu = pull
pur = pull --rebase
up = push
sh = stash
la = "!git l --all"
lr = "!git l -30"
lra = "!git lr --all"
lg = "!git l -G $1 -- $2"
feature = !sh -c 'git checkout --no-track -b $0 origin/main'
tree = log --oneline --decorate --graph
[core]
excludesfile = ~/.gitignore
[color]
diff = auto
status = auto
branch = auto
ui = true
[init]
defaultBranch = main
[pull]
rebase = true
[push]
default = current
followTags = true
[remote]
pushDefault = origin
[branch]
autosetuprebase = always
[commit]
verbose = true
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f