标签: git visual-studio ssh
我使用VSTS进行了回购并克隆了它,并正确设置了所有SSH凭据,但每次都会询问我的用户名和密码。怎么样?
答案 0 :(得分:2)
问题是我将存储库源作为https网址。它需要是SSH。
https
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)
git remote