Azure devops 将TFVC存储库从一个项目迁移到另一个项目?

Azure devops 将TFVC存储库从一个项目迁移到另一个项目?,azure-devops,migration,tfvc,Azure Devops,Migration,Tfvc,我有一个要迁移的TFVC存储库,但我只能找到一种方法将其迁移到git或向后迁移。TFVC不支持团队项目之间的迁移。您可以考虑迁移到临时Git,然后迁移到新的TFVC存储库(),但这可能太复杂了。 Step 1 : Download git-tfs using cmd, use the below given command to download. curl -L -o GitTfs-0.30.0.zip "https://github.com/git-tfs/git-tfs/releases

我有一个要迁移的TFVC存储库,但我只能找到一种方法将其迁移到git或向后迁移。

TFVC不支持团队项目之间的迁移。您可以考虑迁移到临时Git,然后迁移到新的TFVC存储库(),但这可能太复杂了。
Step 1 : Download git-tfs using cmd, use the below given command to download.
curl -L -o  GitTfs-0.30.0.zip "https://github.com/git-tfs/git-tfs/releases/download/v0.30/GitTfs-0.30.0.zip"

Step 2 : unzip GitTfs-0.30.0.zip and check "git-tfs.exe -version" in the cmd prompt.

Step 3 : Cloning tfvc repository from azure.
        git-tfs.exe clone http://tfs:8080/tfs/DefaultCollection $/some_project
          (wait for git-tfs to pull your history) (-or-)
        git-tfs.exe quick-clone http://tfs:8080/tfs/DefaultCollection $/some_project
          (cd some_project and hack away, using only git, until you need to share with TFS…)

Step 4 :  Pushing git repository 
git remote add new git@newserver:newproject.git
note - git@newserver:newproject.git is Bitbucket repo

Step 5 : git push --mirror new