Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse CVS changelist

Tags:

eclipse

cvs

Is there a way to see all the recently changed files in an eclipse project (including files recently changed by other CVS users)? Thanks.

like image 321
DD. Avatar asked Mar 22 '10 14:03

DD.


3 Answers

There is also an Eclipse changelog plugin here

http://code.google.com/a/eclipselabs.org/p/changelog/

Looks very similar to the one on sourceforge that @Grzegorz Oledzki has linked to.

I've ran it on eclipse 3.7 using the update site and it works without any problems. Looks like the project had an initial commit to svn around 6th Aug 2010

like image 156
reevesy Avatar answered Oct 14 '22 03:10

reevesy


The History view just shows the change log for a single file; there is no view to show the change log for all files in a folder or project.

You need to use a different tool.

If you use Maven, you can try the changelog plugin.

If you use WinCVS, there is an option to generate a changelog.

If that's also no option, try cvs2cl.

like image 38
Aaron Digulla Avatar answered Oct 14 '22 03:10

Aaron Digulla


Use Compare With -> Another Branch or version. You can compare with any point in time, or if you are using tags, any tagged version.

like image 30
BillThor Avatar answered Oct 14 '22 04:10

BillThor