Reputation: 26627
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.
Upvotes: 8
Views: 8996
Reputation: 24788
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.
Upvotes: 0
Reputation: 37905
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)
Upvotes: 1
Reputation: 1106
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.
Upvotes: 11
Reputation: 82579
svn st -v
seems appropriate, I think. Try svn help st
for some more information.
Upvotes: 1