VSTS - SSH不起作用

时间:2016-09-14 10:21:16

标签: git visual-studio ssh

我使用VSTS进行了回购并克隆了它,并正确设置了所有SSH凭据,但每次都会询问我的用户名和密码。怎么样?

1 个答案:

答案 0 :(得分:2)

问题是我将存储库源作为https网址。它需要是SSH。

git remote remove origin

git remote add origin ssh://<your-repo-location>

或(更短)

git remote set-url origin ssh://<your-repo-location>

(见git remote man page