Eclipse: Keeping track of all the files that I have changed before checking in?
When I have changed a lot of files I usually forget checking in some of them and this breaks the build. I have tried maintaining lists but it doesnt work. Is there any good plugin to Ecl开发者_JS百科ipse that tells me all the files that have been changed since my last checkin?
And in general you use the Synchronize View. Team providers (Git, CVS) hook into it, and it will show you a delta between what's checked in and what is dirty in your workspace.
Use Window>Show View>Other... to open the view, or switch to the Team Synchronizing perspective.
EDIT: I'll just add if you are using EGit, there's also the Git Staging view. It will show you all modified files for the current repo.
The CVS tooling in Eclipse allows you to maintain changesets. This allows you to group together files - in synchronize view - which have changed for a particular task. More details can be found at http://www.peterfriese.de/using-cvs-change-sets/
The Egit which comes with Eclipse Indigo will mark any directory with modified content.
See the Track Changes section of the Egit man page.
No need to install any extra VCS: all is included with the latest Eclipse distro.
精彩评论