views:

27

answers:

1

Hi everyone,

Is it possible to backup an entire eclipse PDT project (or parts of it), so that it can be restored to that state later?

Ideally this would only save changes from the last backup to save space. If it makes any difference I have Mylyn installed (Maybe you could backup the current task context?) and am using CodeIgniter.

Thanks,

Lemiant

+2  A: 

You are going to want to look into version control. There are many options, the most popular of which are SVN, git and mercurial. The latter two are probably along the lines of what you're looking for.

It is generally good practice to use version control for projects of any real size.

dave