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

StackOverflow https://stackoverflow.com/questions/1611463

  •  05-07-2019
  •  | 
  •  

Question

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

Was it helpful?

Solution

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:

OTHER TIPS

Take a look at Subversive/Subclipse

Installing a CVS would do it, but any backup utility software running in the background would also work.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top