How to view recent CVS project changes in Eclipse?
Asked Answered
T

7

23

Is there a way in Eclipse to view all recent changes of a project? Like in SVN, you can just go "view log" on a right-click menu of a folder. In CVS/Eclipse, I can only view history on a certain file. I am not able to see what files were changed in the last commit. >.<''

Thank you!

Trine answered 18/2, 2009 at 0:21 Comment(0)
S
8

I don't think it's supported through the standard Eclipse plugin.

There was a sourceforge project that tried to augment this functionality, not sure if it's still actively being maintained.

Subfamily answered 18/2, 2009 at 0:24 Comment(1)
This question was also asked on SO here: https://mcmap.net/q/586418/-eclipse-cvs-changelist and it links to an updated version of this plugin that has more features.Popedom
V
11

You could do diff based on time. See what changes have been committed during last couple days, for example.

It's rather awkward in Eclipse, but you can go into CVS Repositories view, click "Dates", enter the "from" date, and then navigate to project you want to find changes, choose "Compare With" and choose "to" date. And then you will see changes that happened during that time.

Valeric answered 19/2, 2009 at 17:18 Comment(0)
S
8

I don't think it's supported through the standard Eclipse plugin.

There was a sourceforge project that tried to augment this functionality, not sure if it's still actively being maintained.

Subfamily answered 18/2, 2009 at 0:24 Comment(1)
This question was also asked on SO here: https://mcmap.net/q/586418/-eclipse-cvs-changelist and it links to an updated version of this plugin that has more features.Popedom
S
1

I don't find nothing insiede the tool in Eclipse. I prefer to use CommitMonitor to monitor SVN History of project (entire project, branch/s, tag/s). It runs in systemtray and advert you every seconds.

Sestos answered 17/5, 2012 at 10:7 Comment(0)
R
0

As mentioned in this thread or in the CVS FAQ:

"see what files were changed in the last commit":

Would that not be the equivalent of selecting the "Compare With>Another Branch or Version" operation from the context menu of the project ?

Rollmop answered 18/2, 2009 at 5:10 Comment(1)
And if you could choose a previous COMMIT this would work great, but you can't. You can only choose versioned tags.Infold
H
0

Until I don't have plugin that can do the job from Eclipse, I use file history from the ROOT of the repository.

If You not see file history in ROOT then create it with

REPOSITORY_HOME\CVSROOT>echo>history

After that all actions on the repository will be saved in form:

u4f2c09af|dejanr|MyPC|src|1.5|Main.java|

Note:all users need to have rw rights to 'history' file

Hakon answered 3/2, 2012 at 16:32 Comment(0)
J
-1

right click on project team->synchronize repository

Jabe answered 9/2, 2017 at 17:43 Comment(0)
L
-2

Doing this turned out surprisingly simple for me:

  • In SVN Repositories view, right click any directory, including repository root
  • Pick Show history from the context menu
  • Revisions will be shown in the History view, like Show log in Tortois
Lamberto answered 7/3, 2013 at 14:26 Comment(3)
Which Eclipse version are you using?Hiedihiemal
Sorry, I just realized you made a comment a long time ago. I'm using Juno.Lamberto
No worries. Some Team stuff was showing up in my project's context menu, but I had to select 'Share' to set it up for the history to work. Cheers.Hiedihiemal

© 2022 - 2024 — McMap. All rights reserved.