How do I delete check-outs from a particular view in clearcase?

谁说我不能喝 提交于 2020-01-03 02:04:59

问题


I have Rational ClearCase v7.1.2.13

I need to delete certain checkouts from a view as these check-outs are reserved and the user has gone for a vacation.

Please help me.


回答1:


The easiest to do is to "unregister" the user's checkouts:

cleartool descr -l vob:\myVob
# get the uuid of the user's view from the description of the vob

cleartool mount \myVob
cd m:\mynewView\myVob
cleartool rmview -force -uuid old_view_uuid

That will not modify anything in the user's views: the files are still being modified, but they won't be considered as checked out.
Instead, they will be "hijacked" (identified in snapshot view) or "eclipsed" (dynamic view).

The other option (put a reserved checkout as unreserved) is rarely possible, as it require access to the view as well as elevated privileges.



来源:https://stackoverflow.com/questions/29168978/how-do-i-delete-check-outs-from-a-particular-view-in-clearcase

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