Any way to get more changes after the initial quick cloning?

I cloned the TFS repository using the quick clone command, which gave me all the latest changes. Is there a way to get additional, older versions of changes to a specific version in this existing repository? I don't want to clone a new repository if I can help him.

+4
source share
2 answers

The quick-clone command checks the latest revision by default, but maybe you want to use the -c flag with the TFS change set number ...

For your information, each command has built-in help with the --help flag, for example: git tfs quick-clone --help

+1
source

Unfortunately, there is no way to do this.

A GitHub issue was sent that asks: is it possible to dump early TFS change lists to the git repository before quickly cloning the change set? One of the companions replied that not only the function was not implemented, but it was not possible to implement it because of the git method:

No, it is not. Or at least not easy. Due to git sha1 thing, if you add the parent commit β€œP” to the commit β€œA”, A will get a new identifier sha1. Thus, git-tfs cannot fall asleep before clone is quickly committed.

+1
source

All Articles