Reputation: 2417
The history view of eclipse shows you a list of files changed in a certain revision. When you open the context menu on one of these you have the option 'Open' which opens a view of that file in that revision.
How can I open the editor for the selected file, i.e. the file in the version of the working copy, right from the history view?
Background is that I want to use the history view to find files that have been changed recently to do code reviewing. People commit via subversion and I use subclipse to connect eclipse to the subversion server.
Today, I must use the 'Open resource'/'Open type' function and type the name of the file that I can read from the history view.
Upvotes: 2
Views: 828
Reputation: 401182
As you noticed, when looking at a file at revision X, you cannot directly open the same file that's in the working copy...
But, when doing code reviews of changes, I generally find useful to not only look at the current version, but to look at the modifications between :
This can be done with the "Compare" editor.
To open it :
Advantages :
Drawbacks :
Upvotes: 1