forked from frioux/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
115 lines (106 loc) · 2.61 KB
/
gitconfig
File metadata and controls
115 lines (106 loc) · 2.61 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[user]
name = Arthur Axel 'fREW' Schmidt
email = frioux@gmail.com
[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 = commit -amWIP
unwip = reset HEAD^
sync = !git pull && git push
[diff]
;external = git_diff_wrapper
compactionHeuristic = true
submodule = log
[super-status]
master = master
pretty = 1
color = 1
releasable = 1
[log]
mailmap = 1
[pager]
;external =
[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@50.116.28.218:"]
insteadOf = fru:
[url "https://github.com/"]
insteadOf = gh:
[url "gitolite@cs:"]
pushInsteadOf = cs:
insteadOf = cs:
[url "git@github.com:"]
pushInsteadOf = gh:
pushInsteadOf = git://github.com/
[url "git@gist.github.com:"]
pushInsteadOf = https://gist.github.com/
[url "git://git.shadowcat.co.uk/catagits/"]
insteadOf = catagits:
[url "catagits@git.shadowcat.co.uk:"]
pushInsteadOf = catagits:
[url "git://git.shadowcat.co.uk/dbsrgits/"]
insteadOf = dbsrgits:
[url "dbsrgits@git.shadowcat.co.uk:"]
pushInsteadOf = dbsrgits:
[url "git://git.shadowcat.co.uk/gitmo/"]
insteadOf = gitmo:
[url "gitmo@git.shadowcat.co.uk:"]
pushInsteadOf = gitmo:
[url "git://git.shadowcat.co.uk/p5sagit/"]
insteadOf = p5sagit:
[url "p5sagit@git.shadowcat.co.uk:"]
pushInsteadOf = p5sagit:
[url "git://git.shadowcat.co.uk/scpubgit/"]
insteadOf = scpubgit:
[url "scpubgit@git.shadowcat.co.uk:"]
pushInsteadOf = scpubgit:
[core]
excludesfile = /home/frew/.gitignore_global
[sendemail]
smtpEncryption = tls
smtpServer = smtp.gmail.com
smtpUser = frioux@gmail.com
smtpServerPort = 587
[log]
date = iso8601
[include]
path = ~/.git-smtp-password
path = ~/.git-multicore
[rebase]
autostash = true
[transfer]
fsckobjects = true
[fetch]
fsckobjects = true
[receive]
fsckObjects = true
[pull]
rebase = true