bcoughlan
bcoughlan

Reputation: 26627

Subversion or subclipse - How do I get a list of checked out files?

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

Answers (4)

nanda
nanda

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

Veger
Veger

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 first \d* filters out the current checkout revision
  • The second \d* filters out the current file revision
  • The .* filters out the authors name

(The \s* filters out spaces)

Upvotes: 1

Matt N
Matt N

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

corsiKa
corsiKa

Reputation: 82579

svn st -v seems appropriate, I think. Try svn help st for some more information.

Upvotes: 1

Related Questions