Azure Devops 从 TFVC 迁移到 Git
Azure Devops Migrate from TFVC to Git
我尝试从 tfvc 迁移到 git,如图 1 所示。
但 git 存储库中没有像图片 2 这样的东西。
我们可以重现这个问题,我们已经报告了这个问题,您可以参考这个ticket以获取最新消息。
作为解决方法,我们可以通过 git cmd 将 TFVC 存储库迁移到 Git。
让我们按照迁移指南执行克隆命令:
git tfs clone {TFVC repo URL}
获取所有分支:
git tfs branch –init --all
对于每个分支,运行 这些命令:
git checkout branch
git log -1
git tfs pull -c=changesetNumber
在 azure devops 中创建一个新的 repo 并获取 repo URL。然后在上游设置 git 存储库:
git remote add origin {New repo URL}
最后,您将所有本地更改推送到远程。
git push origin -u -all
我们可以参考MIGRATING FROM TFVC TO GIT and Migrate From TFVC To Git了解更多详情。
更新1
根据最新消息:已准备好解决此问题。我们会在可用时通知您。
我尝试从 tfvc 迁移到 git,如图 1 所示。
但 git 存储库中没有像图片 2 这样的东西。
我们可以重现这个问题,我们已经报告了这个问题,您可以参考这个ticket以获取最新消息。
作为解决方法,我们可以通过 git cmd 将 TFVC 存储库迁移到 Git。
让我们按照迁移指南执行克隆命令:
git tfs clone {TFVC repo URL}
获取所有分支:
git tfs branch –init --all
对于每个分支,运行 这些命令:
git checkout branch
git log -1
git tfs pull -c=changesetNumber
在 azure devops 中创建一个新的 repo 并获取 repo URL。然后在上游设置 git 存储库:
git remote add origin {New repo URL}
最后,您将所有本地更改推送到远程。
git push origin -u -all
我们可以参考MIGRATING FROM TFVC TO GIT and Migrate From TFVC To Git了解更多详情。
更新1
根据最新消息:已准备好解决此问题。我们会在可用时通知您。