-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
60 lines (60 loc) · 1.22 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
[user]
name = Alejandro Gómez
email = [email protected]
[core]
editor = vim
excludesfile = ~/.gitignore_global
[alias]
a = add
au = add -u
ap = add -p
b = branch -va
bd = branch -d
c = commit
ca = commit --amend -C HEAD
cam = commit --amend
cm = commit -m
co = checkout
cob = checkout -b
d = diff --word-diff
dc = diff --cached
dl = diff HEAD^1
f=fetch
fa = fetch --all
l = log --graph --decorate --no-merges --oneline
ld = log -p --word-diff --oneline
tl = log --graph --decorate --branches --oneline
m = merge
ph = push
phu = push --set-upstream
PH = push --force
pl = pull --rebase
rm = rm --cached
rc = rebase --continue
s = status -sb
st = stash
sts = stash save
sta = stash apply
stp = stash pop
std = stash drop
stl = stash list
discard = reset HEAD --hard
[color]
ui = true
[color "status"]
untracked = cyan
[help]
autocorrect = 1
[merge]
tool = vimdiff
[push]
default = upstream
[branch]
autosetuprebase = always
[tig]
show-date = relative
line-graphics = ascii
tab-size = 4
ignore-space = at-eol
[credential]
helper = cache --timeout=3600