Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

eclipse

svn

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.

like image 978
bcoughlan Avatar asked Jul 13 '10 15:07

bcoughlan


People also ask

How to list all files in svn repository?

Run this command: svn ls -depth infinity http://<URL OF YOUR TARGET REPOSITORY> You have other options for the depth. For my case, I used infinity because I need the path of all files and sub-folders inside my target repository.

How to list svn repositories?

svn list is most useful if you want to see what files a repository has without downloading a working copy: $ svn list http://svn.red-bean.com/repos/test/support README. txt INSTALL examples/ … For further details, see the earlier section the section called “Listing versioned directories”.

How do I check out a file in svn?

Check out files from Subversion repositoryIn the Get from Version Control dialog, click Add Repository Location and specify the repository URL. Click Check Out. In the dialog that opens, specify the destination directory where the local copy of the repository files will be created, and click OK.


2 Answers

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.

like image 186
Matt N Avatar answered Nov 14 '22 23:11

Matt N


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

like image 21
corsiKa Avatar answered Nov 14 '22 23:11

corsiKa