Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any Eclipse plugin which autobackup a project every so and so minutes to an email a/c?

Is there any Eclipse plugin which autobackup a project every so and so minutes to an email a/c?

like image 628
Catfish Avatar asked Oct 23 '09 05:10

Catfish


1 Answers

After doing some research, I found that such a feature is already present in Eclipse. Eclipse stores every new edit in a file in the following backup folder present in the workspace folder .metadata:

 {Eclipse root directory}/.metadata/.plugins/org.eclipse.core.resources/.history/

The backup can also be accessed from right clicking a file and choosing "Restore from Local History...". However, when it comes to emailing the code, there is no such function that comes with default version of Eclipse, so I guess I do need to learn Eclipse Plugin.

Here are some relevant links:

  • http://www.nodans.com/index.cfm/2008/1/18/How-to-recover-a-deleted-file-in-Eclipse
  • http://wiki.eclipse.org/FAQ_Where_is_the_workspace_local_history_stored%3F
like image 196
Catfish Avatar answered Nov 15 '22 12:11

Catfish