本文介绍了我无法撤销RTC中某些资源的更改,因为它们与“文件系统不同步”。请帮助 :(的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我对项目中的某些文件进行了更改(使用工具自动生成)。



我想回滚这些更改,但是当我点击撤消会出现一条错误消息,告诉我运行撤销本地更改时出现问题,原因资源与文件系统不同步。



任何人都有任何想法?



Thx

解决方案

您应该可以:




  • 启动一个刷新沙箱(不会提交任何内容),如您以前的问题

  • 然后撤消您的本地更改






此有更多的补充ete但危险的解决方案:



(序言:建议在评论中:



不要重新加载

用户的Eclipse工作区具有文件系统的错误视图, 它只需要刷新

重新加载就像使用原子武器来杀死一只苍蝇。只是刷新!它很容易,快速,无痛!



(实际上可以删除/删除本地更改)






注意:同一个线程提到:



 沙箱中的文件与您的存储库工作区不同步


$我已经提交了以获得此固定。



I made changes to some files i had in a project (they were auto generated with a tool).

I want to roll back those changes, but when i click "undo" an error message appears, telling me that "Problems occurred running undo local changes", reason "Resource is out of sync with the file system".

Now i'd really like to undo my changes :|

Anyone have any ideas?

Thx

解决方案

You should be able to:


This thread on jazz.net has a more complete but dangerous solution:

(preface: ehughes does advise in the comment:

Don't reload!
The user's Eclipse workspace has the wrong view of the filesystem, it just needs to be refreshed.
Reloading for this is like using an atomic weapon to kill a fly. Just refresh! It's easy, quick, and painless!

)

(actually it can erase/delete local changes)


Note: that same thread mentions:

Files in your sandbox are out of sync with your repository workspace

这篇关于我无法撤销RTC中某些资源的更改,因为它们与“文件系统不同步”。请帮助 :(的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 01:47