How can I push my existing Git repository to Team Foundation Service

Okay, I was apparently overcomplicating this. Here’s what I did.

  1. Created a new project in TFService
  2. Connected to that project in Visual Studio
  3. Cloned that project in Visual Studio
  4. git pull c:\source\oldGitProject

That was it, it pulled all of the changes from the old location, and I could push that up to TFService easily.

Leave a Comment