国外网站(
http://stackoverflow.com/questions/969782/eclipses-local-history-where-are-files-saved)上:
Every time you modify a file in Eclipse, a copy of the old contents is kept in the local history. At any time, you can compare or replace a file with any older version from the history.
Although this is no replacement for a real code repository, it can help you out when you change or delete a file by accident.
Local history also has an advantage that it wasn’t really designed for: The history can also help you out when your workspace has a catastrophic problem or if you get disk errors that corrupt your workspace files.
As a last resort, you can manually browse the local history folder to find copies of the files you lost, which is a bit like using Google’s cache to browse Web pages that no longer exist.
Each file revision is stored in a separate file with a random file name inside the history folder. The path of the history folder inside your workspace is
.metadata/.plugins/org.eclipse.core.resources/.history/
You can use your operating system’s search tool to locate the files you are looking for.
--------------------------------------------------------------------------------
Note, if your need to import your local history into a new workspace, you will need both:
.metadata/.plugins/org.eclipse.core.resources/.history
.metadata/.plugins/org.eclipse.core.resources/.project
to have a functional local history in that new workspace.
Eclipse中在导入已有项目时如何将Local History一起导入到新workspace的呢?
如果公司和家里的机器都可以共享这些history文件,这样我们就可以在不同地点同样的查看我们的历史记录,那该多好啊。。。
事实上,我们只要知道eclipse将history记录存到了什么文件中,又放在什么位置就可以了,然后我们就只需要将这个history记录拷贝到新的工作空间中就ok!
根据上面国外的回帖好像是
%eclipse%\workspace\.metadata\.plugins\org.eclipse.core.resources\.history
分享到:
相关推荐
Eclipse – 整合开发工具(基础篇) Jacky Lee 2005/03/01 教程特点: 1、图文并茂的详细介绍了eclipse的使用方法 2、虽然是pdf,但是非影音版,所有相当清晰 3、含文档结构目录,可以方便的跳转到对应章节 4、允许...
3.1.10 历史纪录(Local History)............... 101 3.1.11 视景.......... 102 3.1.12 搜寻(Search).. 104 3.1.13 启动和关闭(Startup and Shutdown)...... 105 3.2 Ant ................. 107 3.2.1 Ant ...
3.1.10历史纪录(Local History)..................73 3.1.11视景.................................................74 3.1.12搜寻(Search)....................................76 3.1.13启动和关闭(Startup and...
3.1.10 历史纪录(Local History)....................................... 101 3.1.11 视景.......................................................... 102 3.1.12 搜寻(Search)....................................
1.Eclipse简介...........................................................................................................................................................8 1.1历史背景......................
为了能够在项目中使用这些库,我们需要将对应的jar包加入到项目的构建路径中。 **操作步骤**: 1. 将所需的jar包放入项目的`WebRoot/WEB-INF/lib`目录下。 2. 如果使用的是MyEclipse,可以通过右键点击项目,在弹...
在 Eclipse 中安装 CDT 之后, 浏览至 File => New => Project,在那里,您将发现三个新的可用项目类型:C(“Standard C Make Project”)、C++(“Standard C++ Make Project”)和“Convert to C or C++ Projects...
目录 0.環境說明... 7 1.Eclipse簡介... 8 1.1歷史背景... 8 1.2開發原始碼軟體... 9 1.3 Eclipse版本介紹......第一版1.0在2001年11月释出,随后逐渐受到欢迎。
- **工作区(Workspace)**:是Eclipse中存储项目的物理位置。每个Eclipse实例可以有多个工作区,它们之间互不影响。 - **工作台(Workbench)**:是Eclipse的主要用户界面,包含了各种视图、编辑器和透视图,用于...
例如,从最初的Eclipse 3.x系列到后来的4.x系列,再到现在的最新版本,Eclipse不断引入新的特性和功能,如更先进的UI设计、更好的性能优化以及更多的编程语言支持等。 **1.4 跨语言、跨平台** Eclipse不仅仅局限于...
在Eclipse中使用CVS之前,首先需要确保Eclipse已安装了CVS插件,并且配置好了一些基本设置: 1. **自动刷新工作区**:Eclipse默认情况下不会自动刷新工作区,这意味着当文件发生变化时,你需要手动刷新才能看到更改...
在Eclipse中创建一个新的Java项目非常简单。用户只需选择“File”菜单下的“New”选项,然后选择“Java Project”,按照向导步骤即可完成项目创建。 **4.2 建立Java类别** 创建好项目后,可以通过右键点击项目名,...
- **Control + Shift + G - 查找工作空间中的引用(Find References in Workspace)**:查找当前选中元素在工作空间中的所有引用。 - **Control + Shift + F - 格式化代码(Format Code)**:格式化当前文件中的Java...