我可以恢复 git tf 克隆吗?

Can I resume a git tf clone?

我在 TFS 中有一个非常大的代码,我必须将它与所有以前的历史一起克隆,所以克隆需要 10 多个小时。

由于连接问题,克隆被中断,我无法完成克隆。

有没有办法暂停和恢复克隆过程。我到处都查了,但我只看到关于恢复 git tfs clone 的文章,但我需要恢复 git tf clone.

我正在使用以下命令进行克隆。

git tf clone "Server_URL" "Server_folder_path" "Local_folder_path" --deep

这是截图 Image

恐怕Git tf clone不支持恢复

由于Git-TF已经达到了end-of-life,相关的文档很少。

所以我运行Git-tf clone --help检查支持的参数,参数不支持恢复功能。

如果您想恢复克隆过程,您可以尝试使用 Git-TFS tool 而不是 git-tf.

在 Git-tfs 中,您可以添加 --resumable 参数并恢复 git tfs 克隆。

这是关于 Git tfs clone 的文档。

希望对您有所帮助。