获取 IntelliJ 中最新的目录内容
我刚刚开始使用 IntelliJ,我想知道用 cvs 中的最新内容替换工作区目录内容的最佳方法是什么。每当我运行更新时,它都不会覆盖我所做的更改,但我正在寻找一个它将盲目覆盖的选项。
I just started using IntelliJ and I wanted to know what is the best way to replace your workspace directory contents with the latest ones from cvs. Whenever I run update it doesn't overwrite the changes I made but I am looking for an option where it will blindly overwrite.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要执行
强制签出
或强制更新
,这并不是真正的 Intellij IDEA 问题,而是 CVS 行为,无论 IDE 或没有 IDE 。You want to do a
force checkout
orforce update
, this isn't really an Intellij IDEA issue, as much as it is a CVS behavior regardless of IDE, or no IDE.您可以打开“更改”视图,从那里恢复所有本地更改,然后从版本控制进行更新。
You can open the Changes view, revert all of your local changes from there, and then update from the version control.