如何在GitBash中禁用SSH并改为使用HTTPS

时间:2013-03-04 00:00:53

标签: git https ssh

我在连接到Bitbucket的时候正在使用SSH,而且Bitbucket使用的端口22突然被阻止,所以我决定改用HTTPS选项。如何在git bash中禁用ssh并使用HTTPS代替?我已经重新安装了git,但它仍然使用SSH / Putty进行连接。

感谢。

1 个答案:

答案 0 :(得分:12)

它不是在git设置,而是在你的存储库设置中。

您需要更改远程存储库的地址并指定https://协议

git remote set-url origin <repo-https-url>

但是,使用https时,您必须在每次推/拉操作时输入密码,但请参阅Is there a way to skip password typing when using https:// on GitHub?