-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
32 lines (32 loc) · 731 Bytes
/
.gitconfig
File metadata and controls
32 lines (32 loc) · 731 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
[alias]
st = status
df = diff
co = checkout
br = branch
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate -n 7
lll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate
[user]
name = codcodog
email = codcodog@gmail.com
[core]
editor = vim
fileMode = false
pager = diff-so-fancy | less --tabs=4 -RFX
[color]
ui = true
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = cyan bold
newHighlight = cyan bold 22
[color "diff"]
meta = 11
frag = magenta bold
commit = yellow bold
old = red bold
new = cyan bold
whitespace = red reverse
[diff-so-fancy]
stripLeadingSymbols = false
[pull]
rebase = false