git config --global core.quotepath false
使用 http/https协议操作代码仓库会需要验证用户名密码,可以使用 git密钥管理工具永久存储。 输入完用户名密码操作后运行以下命令
git config --global credential.helper store
去掉 --global表示仅当前仓库有效
--global
如果当前密码有更新,需要删除已存储密码
git config --global --unset user.password
← Git 子模块