-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
54 lines (40 loc) · 807 Bytes
/
.gitconfig
File metadata and controls
54 lines (40 loc) · 807 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
[user]
name = Guillaume Andreu Sabater
email = guillaume.andreu.sabater@gmail.com
[github]
user = g-as
[advice]
statusHints = false
[alias]
st = status
meld = difftool --dir-diff
fp = !git fetch --prune && !git branch -r | awk "{print $1}" | egrep -v -f /dev/fd/0 <(!git branch -vv | grep origin) | awk "{print $1}" | xargs !git branch -d
[push]
default = current
[pull]
default = current
rebase = true
[merge]
tool = meld
[mergetool]
prompt = false
[gpg]
program = gpg
[core]
excludesfile = /Users/gas/.gitignore
[credential]
helper = store
[color]
ui = auto
diff = auto
status = auto
branch = auto
[color "branch"]
current = yellow reverse
remote = green bold
local = blue bold
[color "diff"]
meta = blue bold
frag = magenta bold
old = red bold
new = green bold