您的位置:首页 > 编程语言

使用git的push到github上每次都要输入用户名和密码

2018-03-10 16:38 603 查看
原文出处: http://blog.csdn.net/wo541075754/article/details/52176688

问题

每次进行代码push的时候都需要输入用户名和密码,效率极低,安全性也无法保证。

原因

使用了https的方式push代码

解决方案

方法一在termail里输入:
git remote -v
输出:
origin  git@github.com:HappySecondBrother/example.git (fetch)
origin  git@github.com:HappySecondBrother/example.git (push)

删除https方式,添加ssh:
git remote rm origin
git remote add origin git@github.com:twlkyao/demo.git
git push origin
[remote "origin"]
url = https://github.com/HappySecondBrother/example.git fetch = +refs/heads/*:refs/remotes/origin/*
[remote "origin"]
url = git@github.com:HappySecondBrother/example.git
fetch = +refs/heads/*:refs/remotes/origin/
2
方法二修改项目目录下的git/config,执行vi .git/config:
[remote "origin"]
url = https://github.com/HappySecondBrother/example.git fetch = +refs/heads/*:refs/remotes/origin/*
修改为:
[remote "origin"]
url = git@github.com:HappySecondBrother/example.git
fetch = +refs/heads/*:refs/remotes/origin/*
方法三直接设置新的url
git remote set-url origin git@github.com:HappySecondBrother/example.git
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: