-
Notifications
You must be signed in to change notification settings - Fork 5
/
gitconfig
54 lines (54 loc) · 1.79 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
[alias]
unstage = reset HEAD --
last = log -1 HEAD
lg = log --all --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'\n--abbrev-commit --date=relative
pullall = "!sh -c 'for remote in $(git branch -r | grep -v \\>); do git branch --track $remote; done; git remote update && git pull --all'"
visual = !gitk
stash-unapply = !git stash show -p | git apply -R
[apply]
whitespace = fix
[user]
name = Lee Skillen
email = [email protected]
signingkey = ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCseRD092bPzekqoPSPZMWFwNf6lDPyA29B1FIg4AcpSPIHr3S1flHklTo2UeCBJz2Yfi1kOhgoT8Jawmyit2B1dmAbmbn81Yn4FtFyyXTBiCINlUrxHTGzgtkn+hwA2go5XVsm/eC/x9BUR+ZAfuXJti7ybtDmoHSOG6eythYwyvi4ivCx5yceFOXOcWsuSoyuIVktflzC/UBbvjqbD2SXOEJcqeli0Q42PDKmEeZVkkqSSvBiuZpSj9Y1gfTUK2jCEBX0DPMe9aF4DgOgCXInnILZs5PJoO0FXs2isJh/JfQ4I7q7te+DZ4CFrcfhdl3RyYa90R5YyGMT4LozZ0Wz [email protected]
[core]
editor = vim
whitespace = trailing-space, space-before-tab
[diff]
renameLimit=10000
[merge]
tool = kdiff3
[format]
headers = "Organization: Cloudsmith Ltd\n"
numbered = auto
signoff = true
coverletter = auto
keepsubject = true
[push]
default = simple
followtags = true
[pull]
rebase = true
[sendemail]
confirm = always
smtpencryption = tls
smtpserver = smtp.gmail.com
smtpuser = [email protected]
smtpserverport = 587
smtpsslcertpath = /etc/ssl/certs/ca-bundle.trust.crt
suppresscc = self
attachcopy = true
attachcopyencoding = base64
[commit]
gpgsign = true
[gpg]
format = ssh
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[merge "ours"]
driver = true
[rerere]
autoupdate = true