-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitconfig
More file actions
47 lines (47 loc) · 978 Bytes
/
.gitconfig
File metadata and controls
47 lines (47 loc) · 978 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
[user]
email = kenneth@dewinter.online
name = Kenneth De Winter
editor = nvim
signingkey = 8F501EC17D6BD32F1F9D501D6AFF5453B7233ECD
[diff]
tool = vimdiff
[color]
branch = auto
diff = auto
status = auto
interactive = auto
ui = true
pager = true
[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
[alias]
st = status
ci = commit
br = branch
df = diff
lg = log -p
co = checkout
tree = log --graph --pretty=oneline --decorate
pom = push origin master
amend = commit --amend -C HEAD
dlog = log --oneline --decorate
wdiff = diff --word-diff
mcherry = cherry -v master
commitcount = shortlog --numbered --summary
[core]
pager = less -FRSX
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
editor = vim
[pull]
rebase = false