list / ls SVN Command
How to use list / ls SVN (Subversion) Command in Linux / Windows?
Explanation
list / ls command is used to list each file and the directory as they exist in the repository.
Usage:
svn list <path>
or
svn ls <path>
Example:
- Let us see how this cmd works.
svn list http://192.168.0.255/testsvn/
or
svn ls http://192.168.0.255/testsvn/
Output:-----------------------------------------------
README.txt
INSTALL
examples/
--------------------------------------------------------
Result:
From the above cmd, each file and the directory in 'testsvn' are listed.