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