Reputation: 197
How can I view changes made in the whole workspace on a specific date in Eclipse? Is there any plugin for that?
Upvotes: 15
Views: 39231
Reputation: 5595
To view the resource history for a file:
Note: The History view also shows you all version and branch tags that are associated with the file.
Upvotes: 2
Reputation: 8859
You have to use SCM(SVN or GIT etc) to see the list of changes on your workspace. Thus you can synchronize the local workspace with the remote repository to see the list of changes.
There is no eclipse built in way to do this. However you can check the local history of a single file as answered by @Laxmikant Gurnalkar.
Also note that you can create local repositories in GIT and SVN.
Upvotes: 1
Reputation: 5023
Right Click
on the file and select "Compare With" > "Local History"
.
It will list the file history by date. Click on any date will display the history of the file content with current version.
This is what Eclipse supports about local history
Upvotes: 24