forked from ryanb/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 4
/
gitconfig.erb
52 lines (39 loc) · 810 Bytes
/
gitconfig.erb
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
[color]
branch = auto
diff = auto
status = 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
[user]
name = Cristian Stügelmayer
email = [email protected]
[core]
excludesfile = /home/cristian/.gitignore
editor = vim
[alias]
co = checkout
nff = merge --no-ff
prune-all = remote prune origin
cleanup = "!git branch --merged | grep -v '\\*\\|master\\|develop' | xargs -n 1 git branch -d"
pt = !git tag -l | xargs git tag -d && git fetch -t
[mergetool]
keepBackup = false
[rerere]
enabled = 1
[push]
default = tracking
[merge]
tool = meld
[pull]
rebase = true