-
Notifications
You must be signed in to change notification settings - Fork 5
/
gitconfig
57 lines (50 loc) · 1.21 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[user]
name = Pierre Dulac
email = [email protected]
[core]
autocrlf = input
safecrlf = false
excludesfile = ~/.gitignore_global
[alias]
co = checkout
ci = commit
st = status
br = branch
hist = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold white)— %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative
type = cat-file -t
dump = cat-file -p
today = !git log --since=midnight --author=\"$(git config user.name)\" --oneline
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red
new = cyan
[color "status"]
added = yellow
changed = green
untracked = cyan
[apply]
# Detect whitespace errors when applying a patch
whitespace = fix
[diff]
tool = vimdiff
[push]
default = simple
[hub]
protocol = https
[filter "media"]
clean = git-media-clean %f
smudge = git-media-smudge %f
[url "https://"]
insteadOf = git://
[http]
cookiefile = /Users/dulacp/.gitcookies