在平时工作中check in 文件的时候经常会遇到别人check out文件并且是reserved,那自己就无法check out该文件了。 比如要check out altertbl.sh 这个文件,结果发现出现以下错误:
kco -c "bug fix" altertbl.sh
cleartool: Error: Branch "/main/rl_test" of element is checked out reserved by view abc.test ("test:/CCSEVIEW/abc.test").
cleartool: Error: Unable to check out "altertabl.sh".
aborting.
那如何把这个别人在别的view check out的文件弄成unreserved的呢? 从clearcase 手册中查到以下用法:
unreserve [ –vie⋅w view-storage-dir-pname ] [ –cact ]
[ –c⋅omment comment | –cfi⋅le comment-file-pname | –cq⋅uery
| –cqe⋅ach | –nc⋅omment ] pname ...
于是输入以下命令:
c unreserve -view test:/CCSEVIEW/abc.test /test/altertbl.sh
Changed checkout to unreserved for "/test/altertbl.sh" branch "/test/rl_test".
然后我们就可以正常的check out 和check in了。