Any Way I Can Easily Merge Git Branches Created in CVS2Git Migration? -


we did migration of our cvs repository git.

in our cvs repository, had branches code in them had stashed away after development complete, until had time schedule them @ later point.

when did migration using cvs2git, resulted in branches getting carried on git repo, way worked files had been branched in cvs appeared in git branch.

so example, if had following file/folder tree in cvs on head:

lib    -com       -example          -folder1             -file1a             -file1b          -folder2             -file2a             -file2b 

and branched "file1a" , "file2b" files on branch_cool_feature branch in cvs, resulting "branch_cool_feature" branch in git contains "file1a" , "file2b" files.

i'm looking easiest way identify files involved in cvs branch i'd want merge in, including point branched in cvs know diff merge in, , automatically merge.

this best i've got far, hoping there better way:

1) git diff --name-status on master , branch_cool_feature diff-filter set m identify files modified in branch, or take full list of files in branch 2) each of files, @ cvs history , correlate timestamps identify 2 generated git commits file represent diff merged 3) run git merge on specific file , specify 2 commits diff merge in

appreciate help, thanks!

-git newbie

p.s. don't have ton of details on how actual cvs2git conversion run, if it's important can hold of it.

is there way easily


Comments

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -