-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
79 lines (62 loc) · 1.52 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[user]
name = Christian Höppner
email = [email protected]
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICF2HUMJT5CjS+Uz/PSBKXI/kKI9EAsxQh/Nnz+ANq+B
[gpg]
format = ssh
[gpg "ssh"]
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign"
allowedSignersFile = /Users/mkaito/.ssh/allowed_signers
[commit]
gpgsign = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[alias]
co = checkout
cob = checkout -b
b = branch
c = commit
s = status --short
ss = status
p = push
pt = push --follow-tags
pp = push --force-with-lease
ppt = push --force-with-lease --follow-tags
l = log --color --graph --pretty=format:'%G? %Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
[core]
sshCommand = "ssh -i ~/.ssh/id_ed25519_1password.pub"
excludesfile = /Users/mkaito/.gitignore
autocrlf = input
[push]
default = current
[color]
ui = true
[web]
browser = /usr/bin/firefox
[pager]
tag = false
branch = false
[diff]
renameLimit = 2000
[sendemail]
smtpserver = /usr/bin/msmtp
smtpserveroption=-a
smtpserveroption=mkaito.net
[pull]
rebase = true
[init]
defaultBranch = master
[rebase]
autoSquash = true
[fixup]
commit = true
menu = fzf --height '60%' \
--bind 'tab:toggle-preview' \
--preview 'git show --color {+1}' \
--preview-window=up:80% \
--prompt 'Select commit: '
[includeIf "gitdir:~/dev/stx/zego/"]
path = .gitconfig-zego