-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
73 lines (64 loc) · 1.4 KB
/
.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# This is Git's per-user configuration file.
[user]
name = juam
email = [email protected]
signingkey = B050AB12F5C652B13D661C3B8941A280AFBAB8A2
[gpg]
program = gpg
[commit]
gpgsign = true
[alias]
ft = fetch
ftp = fetch -p
st = status
ci = commit
cim = commit -m
ciam = commit -a -m
cp = cherry-pick
rb = rebase
rbi = rebase -i
rbm = rebase -i origin/master
rbd = rebase -i origin/develop
rbs = rebase -i origin/staging
unstage = reset HEAD
uncommit = reset --soft HEAD^
br = branch -v
bra = branch -a
co = checkout
cob = checkout -B
df = diff
l = log --decorate --graph --oneline
lg = log --stat --decorate --graph --oneline
up = pull --rebase origin master
dc = diff --cached
ph = push -u origin HEAD
phf = push -u origin HEAD -f
clean-untracked = clean -f -d
cleanup = "!git branch --merged | grep -v '\\*\\|master\\|develop\\|main\\|dev' | xargs -n 1 git branch -d"
fix-reference = git gc --prune=now
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[core]
editor = vim
[pull]
ff = only
[diff]
tool = vimdiff
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true