forked from cristianstu/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
55 lines (42 loc) · 908 Bytes
/
gitconfig
File metadata and controls
55 lines (42 loc) · 908 Bytes
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
[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 = Matias Grunberg
email = matias@yellowspot.dev
[core]
excludesfile = /home/matias/.gitignore
editor = vim
[alias]
co = checkout
nff = merge --no-ff
lg = log --oneline --decorate --all --graph
prune-all = remote prune origin
cleanup = "!git branch --merged | grep -v '\\*\\|master\\|develop\\|dev\\|main' | 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
[credential]
helper = cache --timeout=31536000
[pull]
rebase = true