[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.

feat(git): reduce .gitconfig to basic configs for clean setup

+56 -42
+1 -1
.chezmoiignore
··· 4 4 # Temporarily disable file from macOS for Pop!_OS setup 5 5 dot_config 6 6 dot_emacs.d 7 - dot_gitconfig 7 + dot_gitconfig_macos 8 8 dot_gitignore_global 9 9 dot_tool-versions
-41
dot_gitconfig
··· 1 1 [user] 2 2 name = TAKAHASHI Shuuji 3 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 4 17 5 [alias] 18 6 br = branch ··· 22 10 st = status 23 11 sw = switch 24 12 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 13 [pull] 55 14 rebase = true
+55
dot_gitconfig_macos
··· 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