-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig.tmpl
More file actions
58 lines (43 loc) · 1.01 KB
/
Copy pathdot_gitconfig.tmpl
File metadata and controls
58 lines (43 loc) · 1.01 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
[core]
autocrlf = input
editor = nvim
excludesfile = ~/.gitignore_global
ignorecase = false
[alias]
# AI でステージ済みの変更からコミットメッセージを生成 (~/.local/bin/git-aicommit)
aicommit = "!git-aicommit"
[color]
ui = true
{{- if eq .chezmoi.os "darwin" }}
[commit]
gpgsign = true
{{- end }}
[ghq]
root = ~/Project/src
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[pull]
rebase = false
[user]
name = AkashiSN
email = btorntireinvynriy@gmail.com
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICnhzqXkGkWLreU4JcDWCAH+8P47Sj5a2iMPCEZa4sip
[gpg]
format = ssh
{{- if eq .chezmoi.os "darwin" }}
[gpg "ssh"]
program = "op-ssh-sign"
allowedSignersFile = ~/.ssh/allowed_signers
{{- end }}
[url "https://"]
insteadOf = git://
# https:// で書かれた clone/remote を SSH 経由に寄せる
[url "git@github.com:"]
insteadOf = https://github.com/
[init]
defaultBranch = main
[push]
followTags = true