Is there a way to see all the recently changed files in an eclipse project (including files recently changed by other CVS users)? Thanks.
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.
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
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.
Use Compare With -> Another Branch or version. You can compare with any point in time, or if you are using tags, any tagged version.
CVS Change log plug-in seems to be the match. But it seems pretty outdated.
Synchronize view in Eclipse offers a sort of changelog of the most recent changes made to the current branch. You can even select a model which will shouw you changes grouped by a "changeset", with commit comment as a discriminator.
DD,
Your question has a few angles. You need to check on a few places.
- Open the Window/View/Navigator view.
Right-click on the top of the project. 2.a. If you want to see the changes of your coworkers without updating your code, do right-click, Team/Compare with latest from repository. You will be able to see the changes coming in, and your changes affecting them. Naturally, everybody needs to be on the same branch, and everybody else should have committed their changes. 2.b. If you want to see the changes updating your code, do a right-click, and Update or do Team/Update. Again, be sure everybody has finished committing, and they did it to the same brach or trunk before doing the update. Keep reading, please...
Again, in your Navigator View, go to the top of the project, right-click, and do Team/Show History. You will see the versions grouped by commitment, so you will have to go to each commit, click on it, and see what files changed on each version.
You can track the changes of each file by walking through the history of the project, and see at the bottom or the side which files changed on each version. Double click on a file to see the compare with other version of the file.
Good luck! CVS and SVN can be frustrating even after you get a good hold of the concepts.
Luis
© 2022 - 2024 — McMap. All rights reserved.