From 09f940169f5d7853f74d08489bee5e6365944614 Mon Sep 17 00:00:00 2001 From: Xavier Logerais Date: Wed, 29 Oct 2025 22:15:44 +0100 Subject: [PATCH] feat(config): Disable git configuration This is now managed with [chezmoi](https://www.chezmoi.io/) in the repository [config-chezmoi](https://gitea.logerais.com/xavier/config-chezmoi). --- config.d/git.bash | 50 ++++++++++++++++++++++++----------------------- 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/config.d/git.bash b/config.d/git.bash index a8edc3d..165e785 100644 --- a/config.d/git.bash +++ b/config.d/git.bash @@ -2,28 +2,30 @@ # Configuration GIT -git config --global user.name "Xavier Logerais" -git config --global user.email "xavier@logerais.com" +# Now managed by chezmoi -git config --global credential.helper cache - -git config --global merge.conflictstyle diff3 -git config --global rerere.enabled 1 - -cat <~/.gitignore -### asdf ### -.tool-versions -### mise ### -.mise.toml -### direnv ### -.direnv -.envrc -### python ### -.venv -EOF - -cat <~/.gitattributes -EOF - -git config --global core.excludesfile ~/.gitignore -git config --global core.attributesfile ~/.gitattributes +# git config --global user.name "Xavier Logerais" +# git config --global user.email "xavier@logerais.com" +# +# git config --global credential.helper cache +# +# git config --global merge.conflictstyle diff3 +# git config --global rerere.enabled 1 +# +# cat <~/.gitignore +# ### asdf ### +# .tool-versions +# ### mise ### +# .mise.toml +# ### direnv ### +# .direnv +# .envrc +# ### python ### +# .venv +# EOF +# +# cat <~/.gitattributes +# EOF +# +# git config --global core.excludesfile ~/.gitignore +# git config --global core.attributesfile ~/.gitattributes