打开git bash
输入用户名和密码
git config --global user.name "username"
git config --global user.email "email.@xx.com"
git config --global user.password "password"
git config --global credential.helper store
这样就不用每次输入用户名和密码了,全局配置了相同的账户和密码
打开git bash
输入用户名和密码
git config --global user.name "username"
git config --global user.email "email.@xx.com"
git config --global user.password "password"
git config --global credential.helper store
这样就不用每次输入用户名和密码了,全局配置了相同的账户和密码
转载于:https://www.cnblogs.com/jlove/p/6274007.html