Reputation: 2216
After migrating a project from "subversion" to "githhub" successfully, I am trying to build it by hitting "run" in "teamcity" but getting the following error:
How can i solve it?
Upvotes: 1
Views: 82
Reputation: 3704
This is expecting to be inside an actual Git repository so it can generate the GitVersion correctly.
You'll need to install git on your build agents and ensure that code is checked out on the agent. Further information as to why this needs to be done can be found in the TeamCity Checkout Mode Documentation
Hope this helps
Upvotes: 1