Wiki source code of tfvc
Version 5.1 by Rudi Marais on 2022/02/02 15:20
Hide last authors
| author | version | line-number | content |
|---|---|---|---|
| |
1.2 | 1 | We will migrate all the tfvc repos into one git repository called "migration" as a staging area to facilitate the process of moving the individual solutions into its final git location. This can be done in a delta fasion until we restrict the tfvc repos and everyone starts working off the git staging repo. |
| 2 | |||
| |
2.1 | 3 | Feature branches can be merged back into master via a pull request and the feature branches that are not applicable anymore can be abandoned. |
| |
1.2 | 4 | |
| 5 | The process to sync the tfvc to the git repo | ||
| 6 | |||
| 7 | 1. pull all the latest changes from TFVC via cli | ||
| |
2.3 | 8 | \\{{code language="powershell"}}tf vc workspace /new migration /collection:https://dev.azure.com/ebsphere |
| |
1.2 | 9 | mkdir c:\dev\src\migration |
| 10 | cd c:\dev\src\migration | ||
| 11 | tf vc get{{/code}} | ||
| 12 | |||
| 13 | 1. do an extract and dump into excel to generate the copy commands | ||
| |
5.1 | 14 | \\{{code language="PowerShell"}}forfiles /P C:\dev\src\migration /S /C "cmd /c echo @isdir;@ext;@path" >>list3.txt |
| |
2.3 | 15 | |
| |
5.1 | 16 | {{/code}} |
| |
1.2 | 17 | 1. execute copy commands from excel generation |
| |
2.2 | 18 | 11. this will split the source into master and feature branches |
| |
1.2 | 19 | |
| |
2.2 | 20 | 1. A recon step must be performed at this stage to make sure all files where copied this is performed in excel |
| |
2.3 | 21 | 11. get directory listing of copied files (dir/s/b %path% > list.txt) and dump into "recon" sheet and "recon" column in main sheet will indicate if any are missing with a 1 |
| 22 | 11. rectify any problematic items | ||
| |
2.2 | 23 | |
| |
1.2 | 24 | 1. run the [[tf-sync.ps1>>doc:.tf-sync.WebHome]] script |
| 25 | 11. this will parse the directories that was created into the migration repository | ||
| 26 | 111. see [[mappings >>doc:.mappings.WebHome]]for structure | ||
| |
4.1 | 27 | 11. this will create or update the migration repository in GIT |
| 28 | 11. an .gitignore gets injected this will make sure binaries are excluded |