forked from thoughtbot/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
38 lines (37 loc) · 1.07 KB
/
Copy pathgitconfig
File metadata and controls
38 lines (37 loc) · 1.07 KB
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
[user]
name = Alex Slynko
[push]
# Push current branch even if you've never pushed it before
default = current
[format]
pretty = %C(blue)%h%Creset %Cgreen[%cr]%Creset (%an) %s
[color "diff"]
# Color syntax: <foreground> <background>
# So "normal red" is normal foreground, red background
# BUT bold is a modifier, so "bold green red" means
# "bold green" foreground, red background
whitespace = red reverse
meta = cyan
frag = magenta bold
old = red
new = green
commit = yellow
[color "status"]
# Options:
# header: the header text of the status message
# added/updated: added but not committed
# changed: changed but not added in the index
# untracked
# nobranch: the color the "no branch" warning is shown in (default red)
added = yellow # files deleted with "git rm" are this color too
changed = green # deleted items NOT done with "git rm" are this color too
untracked = cyan
[color]
ui = auto
[diff]
# For Github-style word diffs
wordRegex = [^[:space:]]
[core]
excludesfile = /home/alex/.gitignore_global
[rerere]
enabled = true