forked from radar/dot-files
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgitconfig
executable file
·37 lines (36 loc) · 903 Bytes
/
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
[user]
name = Kivanio Barbosa
email = [email protected]
# DO NOT EDIT BELOW THIS LINE
[merge]
summary = true
tool = opendiff
[color]
branch = auto
diff = auto
status = auto
ui = auto
[apply]
whitespace = nowarn
[core]
editor = mate -w
excludesfile = ~/.gitignore
whitespace = fix
[alias]
c = commit -m
a = add
di = diff
dic = diff --cached
pl = pull
ps = push
plre = pull --rebase
st = status
out = log origin..HEAD
serve = !git daemon --reuseaddr --verbose --base-path=. --export-all ./.git
unstage = reset HEAD
lol = log --pretty=oneline --abbrev-commit --graph --decorate
branches = !git-branches
put = push origin HEAD
push-all = "!for i in $(git config --list | grep -E ^remote\\..+\\.url | sed -E 's/^remote\\.(.*)\\.url=.*/\\1/'); do git push $i master; done"
[help]
autocorrect = 1