-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
58 lines (57 loc) · 1.51 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
[user]
name = Matthias Maennich
email = [email protected]
[core]
editor = vim
pager = less -FXRS
excludesfile = ~/.gitignore
abbrev = 12
[color]
ui = true
[merge]
tool = fugitive
renamelimit = 100000
log = 200
conflictstyle = diff3
[gui]
fontui = -family \"Bitstream Vera Sans\" -size 8 -weight normal -slant roman -underline 0 -overstrike 0
fontdiff = -family \"Bitstream Vera Sans Mono\" -size 9 -weight normal -slant roman -underline 0 -overstrike 0
spellingdictionary = en
[color]
ui = true
[alias]
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
ri = rebase --interactive --autosquash --autostash
rv = revise -i --autosquash
rw = revise -ie
amend = commit --amend -CHEAD
one = show -s --pretty='format:%h (\"%s\")'
fixes = show -s --pretty='format:Fixes: %h (\"%s\")'
ca = commit --amend
rc = rebase --continue
[push]
default = simple
[help]
autocorrect = 1
[mergetool "fugitive"]
cmd = vim -f -c \"Gvdiffsplit!\" \"$MERGED\"
[url "ssh://[email protected]/"]
pushInsteadOf = git://github.com/
[url "ssh://[email protected]/"]
pushInsteadOf = https://github.com/
[pretty]
fixes = Fixes: %h (\"%s\")
[icdiff]
options = --highlight --line-numbers
[format]
coverLetter = auto
coverFromDescription = auto
signoff = true
[commit]
verbose = 1
[diff]
tool = vimdiff
[pull]
rebase = true
[include]
path = .gitconfig.local