您好,我只想分享解决方案,以解决耗时的问题。 问题是我无法从bitbucket同步我的git项目。
Visual Studio 2013一直告诉我"详细消息:无效重定向到不同的主机"
在我的案例中出现问题的原因是,我从源头克隆了项目
remote.originurl = https://[username]@bitbucket.com/[account]/[projectname]
但是当尝试同步时,visual studio被bitbucket重定向到url
https://[username]@bitbucket.org.
所以通过将.git / config remote.originurl更改为
remote.originurl = https://[username]@bitbucket.org/[account]/[projectname]
解决了这个问题。