Reputation: 222
Trying to clone GIT repository.
Using TFS2013 & VS2015.
Clone on my local machine worked fine. I used this path(http://yourtfsserver.co.uk/tfs/defaultcollection/_git/GitTest) to clone locally but when I try to clone this repository on the server where TFS is installed I get below error.
When i try to clone I get this error Response status code does not indicate success: 404 (Not Found)
I am also getting the same error when I try to build a web project from this repository using TFS builds.
Any idea what is going wrong.
Upvotes: 3
Views: 1930
Reputation: 51183
First try to use git command to on the build server to see if it works. Such as
git clone https://fabrikam.visualstudio.com/DefaultCollection/Fabrikam/_git/FabrikamFiber
Also please check if "Project Collection Build Service" and the user account you use to create repository has "Read" permission to your code repository via following steps:
Make sure "Read" permission is set to "Allow", otherwise you will get a 404 error.
More details please refer this similar question: VSO Build -- Response status code does not indicate success: 404 (Not Found)
Upvotes: 2