-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
55 lines (45 loc) · 1005 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
47
48
49
50
51
52
53
54
55
[user]
name = Miles Bryant
email = milesbryant@monzo.com
signingkey = F216EBE507018502
[core]
editor = nvim
autocrlf = input
excludesfile = /Users/milesbryant/.gitignore-global
[commit]
template = ~/.gitmessage
gpgsign = true
[push]
default = current
[alias]
st = status
cma = commit -a -m
unstage = reset HEAD --
plg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
[pull]
rebase = true
[url "https://github.com/"]
insteadOf = gh:
[url "https://gist.github.com/"]
insteadOf = gist:
[url "https://bitbucket.org/"]
insteadOf = bb:
[url "git@github.com:monzo/"]
insteadOf = mz:
[merge]
tool = vimdiff
[mergetool]
prompt = true
[mergetool "vimdiff"]
cmd = nvim -f -c \"Gdiff\" \"$MERGED\"
[difftool]
prompt = false
[diff]
tool = vimdiff
ignoreSubmodules = dirty
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
[gpg]
program = gpg2
[remote "origin"]
prune = true