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

前端 未结 6 1029
终归单人心
终归单人心 2020-12-01 07:31

Microsoft now has support for Git repositories on their Team Foundation Service. I have an account on Team Foundation Service, and I\'d like to push my existing Git reposito

6条回答
  •  猫巷女王i
    2020-12-01 08:09

    Some good answers above, but I found this even easier.

    • Create the local Git repository. (Or in my case, I converted my SVN repository to Git.)
    • Go to visualstudio.com and create the new project, specifying Git as the source control.
    • Click on the 'Code' menu option in the new project in VisualStudio.com.
    • The screen will show the exact Git command to push an existing repository, including the URL for your unique repository. All you have to do is copy and paste that command into your Git command prompt.

      git clone

提交回复
热议问题