I’ve almost managed to migrate all my repos from TFS to Git but I’ve got an issue with a big one that after 3 hours gives me an error on CacheFull on a specific branch.
I’ve read I can clone the main and then add all the needed one by one but I’ve a problem with the syntax…
Using git-tfs list-remote-branches shows me for example
|
+- $/Project1/Releases/2.2
|
+- $/Project1/Releases/2.3.0.4
|
+- $/Project1/XXX/DEV
Then I’ve done
git tfs clone http://tfs:8080/tfs/collection $/Project1/XXX/Main . --branches=none
and it cloned the master.
Now I’ve tried using git fetch -i $/Project1/Releases/2.2
but I got an error saying
Unable to locate git-tfs remote with id = $/Project1/Releases/2.2
You may be able to resolve this problem.
- Try using
git tfs bootstrap
to auto-init TFS remotes.
I’ve also tried doing git tfs bootstrap and doing again the fetch but without luck
Any suggestion? or how can I tell to skip for example $/Project1/XXX/DEV and $/Project1/XXX/FOO_3 in case I got in a loop with them?
Thanks