-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
46 lines (39 loc) · 954 Bytes
/
.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
[include]
path = ~/.config/art-core/.gitconfig-default
[includeIf "gitdir:~/code/winks"]
path = ~/.config/art-core/.gitconfig-personal
[includeIf "gitdir:~/code/bitbucket"]
path = ~/.config/art-core/.gitconfig-personal
[includeIf "gitdir:~/code/dotfiles"]
path = ~/.config/art-core/.gitconfig-personal
[includeIf "gitdir:/opt/"]
path = ~/.config/art-core/.gitconfig-default
[color]
diff = auto
ui = true
[merge]
log = true
ff = false
[alias]
st = status
ci = commit
br = branch
co = checkout
df = diff --color
dfw = diff --color --color-words
lg = log -p --color
lgf = log --format=fuller
since = !git log $(git merge-base --fork-point master)..HEAD
up = pull --rebase --autostash
what = log --format='%an %s'
l = "!. ~/code/dotfiles/git/githelpers && pretty_git_log"
[push]
default = current
[core]
quotepath = false
excludesfile = ~/.gitignore
[diff]
compactionHeuristic = true
noprefix = true
[commit]
verbose = true