-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
42 lines (41 loc) · 1.07 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
[user]
name = tutuca
email = maturburu@gmail.com
[github]
user = tutuca
token = c910b6f76818b3167cc0b7a023a566b7
[alias]
ci = commit -a
co = checkout
st = status
praise = blame
ec = config --global -e
up = !git pull --rebase --prune $@ && git submodule update --init --recursive
cob = checkout -b
cm = !git add -A && git commit -m
save = !git add -A && git commit -m 'SAVEPOINT'
wip = !git add -u && git commit -m "WIP"
undo = reset HEAD~1 --mixed
amend = commit -a --amend
wipe = !git add -A && git commit -qm 'WIPE SAVEPOINT' && git reset HEAD~1 --hard
bclean = "!f() { git branch --merged ${1-master} | grep -v " ${1-master}$" | xargs -r git branch -d; }; f"
bdone = "!f() { git checkout ${1-master} && git up && git bclean ${1-master}; }; f"
[apply]
whitespace = strip
[diff]
color = auto
rename = copy
tool = meld
guitool = meld
[pager]
color = true
[status]
color = auto
[core]
excludesfile = ~/.gitignore
[http]
sslVerify = false
[push]
default = simple
[merge]
tool = meld