0

We have outsourced some work on our ASP.NET MVC website. The outsourcing company copied the source code on BitBucket and worked with this version control system.

Now we need to port these changes on a TFS-controlled VStudio solution. What can I do?

I've cloned my git repository inside VStudio 2019 but I don't what to do next.

enter image description here

abenci
  • 8,422
  • 19
  • 69
  • 134
  • Do you want to use [TFVC](https://learn.microsoft.com/en-us/azure/devops/repos/tfvc/what-is-tfvc?view=azure-devops) for [GIT as Azure Repos](https://learn.microsoft.com/en-us/azure/devops/repos/get-started/what-is-repos?view=azure-devops) in TFS? Which version of TFS do you use? – Shamrai Aleksander Oct 13 '21 at 07:25
  • TFS 2015 and VStudio 2019 – abenci Oct 13 '21 at 07:53

1 Answers1

-1
  1. If you want to import your repo into Team Foundation Version Control, you can try to use git-tf tool. Here you can find the answer: Convert Git repository to TFVC version control
  2. If you want to import into GIT repo on TFS, you can follow this instruction: Manually import a repo. Or update to the latest TFS (now Azure DevOps) version and use the wizard: Import into a new repo
Shamrai Aleksander
  • 13,096
  • 3
  • 24
  • 31
  • Thanks. What I need, is to get changes and create a shelve I can unshelve on my TFS repository. – abenci Oct 13 '21 at 14:10