配置全局的用户账号
在桌面单击右键,找到git bash here, 按照以下指令输入用户名与邮箱
git config --global user.name "6s1" // 用户名
git config --global user.email "6s1@6s1.com" // 邮箱
问题:每次都会提示输入账号密码
解决方法是:保存一下用户本地凭证,这样每次git操作时,使用保存的凭证就好了。
命令
## 全局的
git config --global credential.helper store
git config --global user.email "email"
git confgi --global user.name "name"
在多个项目,不同的git服务器,不同用户名时,对每个项目设置各自的local 配置。
## local
git config --local credential.helper store
git config --local user.email "email"
git confgi --local user.name "name"