How to view local changes by date in Eclipse
Asked Answered
P

3

14

How can I view changes made in the whole workspace on a specific date in Eclipse? Is there any plugin for that?

Populace answered 17/3, 2014 at 10:9 Comment(0)
S
23

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

Local history in Eclipse

Scythe answered 17/3, 2014 at 10:16 Comment(4)
But this work for one file, I want to check whole workspace (more then 20000 files)Populace
@AndrzejKasp: Your system will crash if you tried to do so by any other way., I'm not sure why you would need thatScythe
I need to check all changes made by my mate when I was outPopulace
@AndrzejKasp: Not sure in Eclipse, But diff command might be useful for you.Scythe
B
2

To view the resource history for a file:

  1. Select the file in one of the navigation views. From the context menu, choose Team > Show History.
  2. The History view will open and show a history for the selected CVS file.

Note: The History view also shows you all version and branch tags that are associated with the file.

Bayou answered 28/8, 2019 at 8:9 Comment(0)
O
1

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.

Opia answered 17/3, 2014 at 14:25 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.