문제

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

도움이 되었습니까?

해결책

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

다른 팁

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.

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top