-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitconfig
More file actions
38 lines (38 loc) · 738 Bytes
/
.gitconfig
File metadata and controls
38 lines (38 loc) · 738 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
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[user]
name = ***
email = ***
[push]
default = simple
[color]
ui = true
[alias]
s = status -s
lg = log --pretty=format:“%C(yellow)%h%Cred%d\\ %Creset%s%Cgreen\\ [%cn]” --decorate --all --graph
b = branch -a
bd = branch -D
ci = commit
co = checkout
cp = cherry-pick
publish = “!git push -u origin $(git branch-name)”
rbs = “!git rebase -p origin/develop
po = push origin HEAD
fo = fetch origin
rb = rebase -r
[core]
autocrlf = input
excludefile = ~/.gitignore
[pull]
rebase = true
[commit]
gpgsign = true
[tag]
gpgSign = true
[branch]
sort = -authordate
[rebase]
autoStash = true