Yes, the team synch perspective will build you that list but I don't know of a way to select it either. Honestly I think it'll be easier to get that info outside of Subclipse. If you have the normal SVN command-line clients installed (pretty normal for a subclipse installation) you can just get the info from a command line via the "status" command. Just cd into your workspace and the appropriate project and type "svn st" -- pipe that into a text file in a temp directory and you're on your way to convert to xls.
For example, here's a peek at a junk project I have. There are three new files that I haven't done an "svn add" for yet so they show question marks: C:\Users\champion\workspace\NAC>svn st ? .project ? tester.java ? code\CleanAccess\src\edu\bcm\cleanaccess\arglebargle.java Pipe to a file: C:\Users\champion\workspace\NAC>svn st > c:\temp\NACstatus.csv Try the option to output as XML; Excel understands it well enough as an XML table: C:\Users\champion\workspace\NAC>svn st --xml > c:\temp\NACstatus.xml Give 'em a try and see if the command-line tools will work for your needs. -CPC On Mon, Dec 14, 2009 at 10:07 AM, Mark Davis <[email protected]>wrote: > I am using the subclipse subversion plugin with Eclipse. Does anyone > know how to generate a list of files that I have changed locally and need to > be committed? If I select commit on the project root, it will show a list > in the commit dialog, but I need to be able to select the entire change list > and save in excel. Can't select anything in the commit dialog. Looked at > Team Synchronizing Perspective, but I don;t want to allow change, update or > commit any files. > > Thanks > > Mark > > -- > You received this message because you are subscribed to the "Houston > ColdFusion Users' Group" discussion list. > To unsubscribe, send email to [email protected] > For more options, visit http://groups.google.com/group/houcfug?hl=en -- You received this message because you are subscribed to the "Houston ColdFusion Users' Group" discussion list. To unsubscribe, send email to [email protected] For more options, visit http://groups.google.com/group/houcfug?hl=en
