git为什么我使用ssh keys还是需要输入用户名和密码
这个错误折腾了好久,一直没有解决。后来看到官方的教程,最后一步有说:
If you’re switching from HTTPS to SSH, you’ll need to update your remote repository URLs
然后才知道如果使用ssh key的话,只能对ssh的连接进行使用。
那么如何该如何查看本地的repository的url是什么及改变呢?
查看命令:git remote -v
下面格式是代表使用的ssh:
git remote -v
origin git@github.com:${USERNAME}/${REPOSITORY}.git (fetch)
origin git@github.com:${USERNAME}/${REPOSITORY}.git (push)
下面代表使用的是https:
origin https://github.com/${USERNAME}/${REPOSITORY}.git (fetch)
origin https://github.com/${USERNAME}/${REPOSITORY}.git (push)
设置命令是:git remote set-url
git remote set-url origin https://github.com/${USERNAME}/${REPOSITORY}.git
其中带${}是根据情况需要设置的变量。附:官方链接