每次push到远程库都要输入用户名和密码?

我记得以前不用啊,是不是哪里搞错了?

阅读 18.8k
4 个回答

在添加远程库的时候使用了https的方式。。所以每次都要用https的方式push到远程库,速度还慢。。

查看使用的传输协议:

git remote -v

重新设置成ssh的方式:

git remote rm origin
git remote add origin git@github.com:username/repository.git
git push -u origin master

因为你当前使用的是https提交方式,改为ssh方式即可。

git config --global credential.helper store

git config --global credential.helper "store"

配置好后在 .gitconfig 文件中可以看到

clipboard.png

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Microsoft
子站问答
访问
宣传栏