命令行执行git push不输入账号密码的解决方案

git push 默认需要填写账号密码,累死了

比如我的账号qq275860560,邮箱[email protected],那么执行以下命令即可

git config --global user.name qq275860560
git config --global user.email [email protected]
git config --global credential.helper store

猜你喜欢

转载自blog.csdn.net/k3108001263/article/details/89948424