[READ-ONLY] Mirror of https://github.com/shuuji3/dotfiles. ⚙ dotfiles managed by chezmoi
0

Configure Feed

Select the types of activity you want to include in your feed.

dotfiles / dot_gitconfig_macos
793 B 55 lines
1[user] 2 name = TAKAHASHI Shuuji 3 email = shuuji3@gmail.com 4 signingkey = F15C887632129F5E 5 6[init] 7 defaultBranch = main 8 9[core] 10 autocrlf = input 11 excludesfile = ~/.gitignore_global 12 ignorecase = false 13 14[branch] 15 autosetuprebase = always 16 17[alias] 18 br = branch 19 cm = commit 20 co = checkout 21 di = diff 22 st = status 23 sw = switch 24 25[filter "lfs"] 26 clean = git-lfs clean -- %f 27 smudge = git-lfs smudge -- %f 28 process = git-lfs filter-process 29 required = true 30 31[interactive] 32 diffFilter = delta --color-only 33 34[delta] 35 navigate = true 36 side-by-side = true 37 light = true 38 39[merge] 40 conflictstyle = diff3 41 42[diff] 43 colorMoved = default 44 45[includeIf "gitdir:~/dev/navagis/"] 46 path = ~/.gitconfig_navagis 47 48[http] 49 cookiefile = ~/.gitcookies 50[commit] 51 gpgsign = true 52[gpg] 53 program = gpg 54[pull] 55 rebase = true