git-tfs – 在初始快速克隆之后检索更多变更集的任何方法?

我用快速克隆命令克隆了一个TFS存储库,它给了我所有最近的变更集.有没有办法在现有存储库中检索更多,更旧的变更集到某个版本?如果我可以提供帮助,我真的不想克隆新的存储库. 最佳答案 不幸的是,没有办法做到这一点.

提交了一个GitHub issue,请问,是否有可能在快速克隆变更集之前将早期的TFS变更集提取到git repo?其中一个维护者responded不仅没有实现该功能,而且由于Git功能的方式实现它是不可行的:

Not, it’s not. Or, at least, not easily. Because of git’s sha1 thing, if you add a parent commit “P” to a commit “A”, A will get a new sha1 id. So git-tfs can’t backfill in front of a quick-clone commit.

点赞