本文介绍了Subversion中的ClearCase劫持功能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有一种方法可以像在ClearCase中一样劫持 Subversion中的文件。到目前为止,谷歌搜索还没有给我确切的答案。对于非ClearCase用户,劫持文件意味着将其暂时从版本控制中删除。

Is there a way to "hijack" a file in subversion like there is in ClearCase. Googling so far has not given me a definitive answer. For non ClearCase users Hijacking a file means temporarily removing it from version control.

推荐答案

SVN在 copy-modify-merge上运行模型,这意味着始终可以对工作副本进行本地修改,而无需锁定或劫持它。

SVN operates on a "copy-modify-merge" model, meaning it's always possible to make local modifications to your working copy, without needing to "lock" or "hijack" it.

这篇关于Subversion中的ClearCase劫持功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-04 20:49