-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitconfig
104 lines (78 loc) · 2.25 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
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
[user]
name = neko-neko
email = seiichi.nishikata456@gmail.com
[user]
signingkey = ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCqDGFeQ/xG1woOmTgJbEGteZbYP3FMZezrb3URwcZAcJHf85+2E5aLYHiJLx0qsctBrUmHd3dChoTAm9gNNdHKP1DBALg9XCirwk1XeQpuweA7IiLJIIPqdmEneQt/hx22QWOkXR0glvMnoyAd/Yg+C5Q2mzD2qtKnPSN61IneX8lLf1pNloqj3kNVSEN+qy/nU8vm8PfG/GRzPsZWGCwaOa6CLmn+4+V51udALIQNAcWgQRAcj+VfbPczS7YJdxI8gk22FAD0NhPh1g5iu0f7gIpZqLHEu3RqwfoDnPCu/2rmhknKfTAlYNgm7ue7u/QOgSVJYFrEAf2OeBwFmZTQk+vh4Hj02u7B1iUCN4YUcjjmKF067trmRhvZIbWztg1rkKf8Z12MQteA5gV9agdh4+g7/oxXcfVB7GrZ2ndsqEncdxslBhO9Lb2FhJWtqPgcfxOseeLrB6xJJH+fed0R/9DeYBYdtqpQ7s5Xapu2ks8CDCH9sNnVHpOyqED5XR8=
[gpg]
format = ssh
[gpg "ssh"]
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign"
[commit]
gpgsign = true
[core]
editor = hx
ignorecase = false
whitespace = space-before-tab,-indent-with-non-tab,trailing-space
excludesfile = ~/.gitignore_global
pager = delta
[apply]
whitespace = fix
[branch]
autosetuprebase = always
[fetch]
prune = true
[pull]
rebase = true
[push]
default = current
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "status"]
added = yellow
changed = green
untracked = cyan
[diff]
renames = copies
[diff "bin"]
textconv = hexdump -v -C
[help]
autocorrect = 0
[merge]
log = true
[alias]
st = status
amend = commit --amend
fixcommit = commit --fixup
graph = log --graph -10 --branches --remotes --tags --format=format:'%Cgreen%h %Creset• %<(75,trunc)%s (%cN, %ar) %Cred%d' --date-order
history = log -10 --format=format:'%Cgreen%h %Creset• %s (%cN, %ar)'
discard = checkout --
subupdate = submodule update --init --recursive
subupdate-all = submodule foreach git pull origin master
pull-requst = !fzf-hub-pull-requests
pr = pull-requst
c = !fzf-git-checkout
delete = !git branch -D $(git branch | fzf)
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[interactive]
diffFilter = delta --color-only --features=interactive
[delta]
decorations = true
line-numbers = true
side-by-side = true
[delta "interactive"]
keep-plus-minus-markers = true
[ghq]
root = ~/ghq
root = ~/go/src
[github]
user = neko-neko
[include]
path = ~/.gitconfig.local