Reputation: 6993
I keep messing up my android project. I started save ing whole work space. Is there a way to simply backup your peoject? For example iphon has a thing called snap shoot. Is there something like this in eclips?
Upvotes: 6
Views: 2268
Reputation: 7651
You can also revert to a previous version if you are using Eclipse. Eclipse has this nice functionality called Local history that allows it. Right click on a file and use "compare with..." -> "Local History".
You can then compare your current version with old ones. You can merge select part of the code or right click on the old version and replace all your current version with the old one.
Number of entries and duration of conservation of old version can be configured in Eclipse preferences in "General" -> "Workspace" -> "Local history"
Upvotes: 3
Reputation: 33509
Ted,
Have you considered a source code revision control system??
There are a lot of options for this. I personally use subversion and a free hosting site unfuddle.
Other user suggested options...
Revision control programs:
Hosting Options:
Upvotes: 5
Reputation: 12737
I recommend downloading TortoiseSVN and using Subclipse. Look those up.
Upvotes: 1
Reputation: 1133
File -> Export... -> General -> Archive File
Or start using subversion (eclipse plugin: subclipse)
Upvotes: 1
Reputation: 475
You could just create a backup of the project folder, rather than the entire workspace. Then if you need it again, create a new project from existing source using that folder later.
Upvotes: 0