How merge sub branch to main branch using clearcase command line under linux?

陌路散爱 提交于 2019-12-08 03:18:26

问题


I want to merge all the files labelled with XXX in sub branch AAA to main branch.

The main branch do not update since AAA branched out, so the merge task is just replace all changed files with sub branch files.

How can I do this using ClearCase command line (cleartool) under Linux?


回答1:


You can use the command cleartool findmerge for that.

The key is to use a view which select those files:

element * MYLABEL
element * /main/LATEST

And use -ftag yourLabelView

You can also directly use -fver YourLabel (meaning, no need to have a special dedicated view)

Go to a dynamic view set on /main, and do a:

cd /view/MyView/vobs/MyVob
cleartool findmerge . -fver MyLabel -whynot -print

The -whynot and -print allow you to preview what would be merge and see if that fits what you expect.

Once the preview seems good:

cleartool findmerge . -c "Merge MyLabel on main" –fver MyLabel –merge


来源:https://stackoverflow.com/questions/17853316/how-merge-sub-branch-to-main-branch-using-clearcase-command-line-under-linux

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