Publish local Git repository to Team Foundation Service

前端 未结 12 676
灰色年华
灰色年华 2020-12-13 14:33

About a week ago Git support was added to Visual Studio 2012 and Team Foundation Service. I\'ve been playing around with it a bit and wanted to publish a local repository to

12条回答
  •  生来不讨喜
    2020-12-13 15:15

    Create the project in VSTS/GitHub/somewhere, then from Git Bash...

    git remote add origin https://xxx.somewhere.com/_git/xxxProjectNamexxx
    git push -u origin --all

提交回复
热议问题