-
Hell Team, I have a requirement to migration our one of the TFVC cod to AzureDevops. I was tried with git clone tfs which allow me migrate the code less than 5 GB to ADO, but data more than 5 GB not allow me to do the same. Please help me out the same how could I process with the same. OR Can I do the source code migration for the toll ( Devops-m9gration Tool) ? if yes I have the latest version of the file v13.1.1. Please help me here so that I will migrate my TFVC code to Azure Git repository. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We do not touch source code in any way with our tool. It is best to use GitTFS to create a Git repo from your TFVC repo. This does mean that it might be over the 5GB limit set by Azure DevOps for a git Push. To upload repos that are greater than 5gb to Azure DevOps you would need to split the push into chunks. See: https://git-scm.com/docs/git-reset You can reset the "head" to within the 5gb limit, then push that chunk. Once complete you can reset to the next 5gb chunk. |
Beta Was this translation helpful? Give feedback.
We do not touch source code in any way with our tool.
It is best to use GitTFS to create a Git repo from your TFVC repo. This does mean that it might be over the 5GB limit set by Azure DevOps for a git Push. To upload repos that are greater than 5gb to Azure DevOps you would need to split the push into chunks.
See: https://git-scm.com/docs/git-reset
You can reset the "head" to within the 5gb limit, then push that chunk. Once complete you can reset to the next 5gb chunk.