在Git初始化時常見的配置錯誤包括用戶名、郵箱等信息配置錯誤,解決方法如下:
git config --global user.name "Your Name"
git config --global user.email "your_email@example.com"
git config --global core.editor "your_editor"
git config --global core.autocrlf input
git config --list
通過以上方法可以修復常見的Git初始化配置錯誤。