git push命令每次都要输入用户名和密码。原因是在添加远程库的时候使用了https的方式。所以每次都要用https的方式push到远程库。
这是github里的界面截图:
查看使用的传输协议:
git remote -v
[email protected]:~/MyGithub/DailyBlog$ git remote -v
origin https://github.com/toyijiu/DailyBlog.git (fetch)
origin https://github.com/toyijiu/DailyBlog.git (push)
重新设置成ssh的方式:
git remote rm origin
git remote add origin [email protected].com:username/repository.git
git push -u origin master
再看下当前的传输协议:
[email protected]:~/MyGithub/DailyBlog$ git remote -v
origin [email protected]:toyijiu/DailyBlog.git (fetch)
origin [email protected]:toyijiu/DailyBlog.git (push)
然后就可以了。
原文地址:https://www.cnblogs.com/doubilaile/p/8494671.html
时间: 2024-10-06 23:51:19