-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
52 lines (52 loc) · 1.02 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
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = Alberto Harres
email = [email protected]
[core]
editor = vim
[push]
default = current
[alias]
# A #########
a = add
# B #########
b = branch
# C #########
c = commit
cm = commit -m
ca = commit --amend
cl = clone
cld = clone --depth 1
co = checkout
# D #########
d = diff
# L #########
l = log
# M #########
m = merge
# P #########
p = push
pf = push -f
pu = pull
puu = pull upstream
puo = pull origin
# R #########
reh = reset --hard
res = reset --soft
# S #########
s = status
st = stash
sta = stash apply
stl = stash list
cleanup = "!git branch --merged | grep -v master | xargs -n 1 -r git branch -d"
[merge]
tool = vimdiff
conflictstyle = diff3
prompt = false
rebase = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true