Hi,
Does anyone know any way from the command line or with subclipse that I can get the list of files I have checked out?
Thanks.
Hi,
Does anyone know any way from the command line or with subclipse that I can get the list of files I have checked out?
Thanks.
svn st -v
seems appropriate, I think. Try svn help st
for some more information.
Using Subclipse, you can just right-click on a project and go to Team > Synchronize with Repository and it will take you to the "Team Synchronizing" perspective and show a list of files that are different.
If you only want a list of files (without any other information) you could append the command that glowcoder gave with sed:
svn status -v | sed 's/\s*\d*\s*\d*\s.*\s//'
It filters out the information in front of the files names (at least it does for me)
Explanation of the sed argument:
(The \s* filters out spaces)
Just copy paste the information from SVN console after you checked out the code. If you don't know where SVN console is: Go to view Console view and click the icon with arrow. Select SVN console. All the files you've checked out should be listed there.