-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgitconfig
More file actions
85 lines (78 loc) · 1.79 KB
/
gitconfig
File metadata and controls
85 lines (78 loc) · 1.79 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[user]
name = Arthur Axel 'fREW' Schmidt
email = git@frew.co
[color]
status = auto
branch = auto
ui = auto
[alias]
ci = commit
co = checkout
cp = cherry-pick
st = status
br = branch
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
ours = "!f() { git checkout --ours $@ && git add $@; }; f"
theirs = "!f() { git checkout --theirs $@ && git add $@; }; f"
ff = merge --ff-only
fx = commit -a --amend -C HEAD
ix = diff --staged
git = !git
wip = !git add $(git rev-parse --show-toplevel) && git commit -amWIP
[diff]
compactionHeuristic = true
submodule = log
colorMoved = default
[super-status]
master = master
pretty = 1
color = 1
releasable = 1
[log]
date = iso8601-local
mailmap = 1
[merge]
tool = meld
[gui]
fontdiff = -family terminus -size 10 -weight normal -slant roman -underline 0 -overstrike 0
fontui = -family helvetica -size 9 -weight bold -slant roman -underline 0 -overstrike 0
[web]
browser = firefox
[pack]
threads = 0
[push]
default = tracking
[link]
clipboard = true
[grep]
patterntype = perl
fallbackToNoIndex = true
[url "git@github.com:"]
insteadOf = gh:
insteadOf = git://github.com/
insteadOf = https://github.com/
[url "git@gist.github.com:"]
pushInsteadOf = https://gist.github.com/
[core]
excludesfile = /home/frew/.gitignore_global
[include]
path = ~/.git-multicore
[rebase]
autostash = true
[transfer]
fsckobjects = true
[fetch]
fsckobjects = true
[receive]
fsckObjects = true
[pull]
rebase = true
[commit]
verbose = 1
[status]
showStash = true
relativePaths = true
[init]
templateDir = ~/code/dotfiles/git/template/
[protocol]
version = 2