Clearcase : Migrate from Git to ClearCase

浪尽此生 提交于 2019-12-08 00:31:29

问题


Could you please share your experience with Git to Clearcase migration ?

As we need to convert our repo to CC and keep history.


回答1:


There is no real "experience" of such a migration, but if you need to keep the history, you can do so easily for one branch (like master), it is more difficult for multiple branches:

git filter-branch --tree-filter 'clearfsimport -preview -rec -nset . m:\MyView\MyVob\ParentDirectory' HEAD

For each commit of the git repo, you do a clearfsimport, in order to add or update files in a ClearCase dynamic view (as explained in "Creating a new subdirectory structure in ClearCase?")

See more about the filter-branch --tree filter in "Rewrite git history replacing a word in every single file", used usually to rewrite history, but used here to for another purpose (clearfsimport).



来源:https://stackoverflow.com/questions/24888318/clearcase-migrate-from-git-to-clearcase

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!