我想知道如何使用svn api获取有关svn根存储库结构的信息。
我的结构如下:
HTTP:///
/ PROJECT1
/项目2
我试过了:
svn列表http:/// svn也是svn list -v http:/// svn
作为回应我只得到:./
如何递归获取信息?
提前谢谢。
答案 0 :(得分:1)
svn list
似乎为我工作:
tomislav@malik:~$ svn list http://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x
.gdbinit
ABOUT_APACHE
Apache.dsw
BuildAll.dsp
BuildBin.dsp
CHANGES
INSTALL
InstallBin.dsp
LAYOUT
LICENSE
Makefile.in
Makefile.win
NOTICE
NWGNUmakefile
README
README-win32.txt
README.platforms
ROADMAP
STATUS
VERSIONING
acinclude.m4
build/
buildconf
config.layout
configure.in
docs/
emacs-style
httpd.dsp
include/
libhttpd.dsp
modules/
os/
server/
srclib/
support/
test/
tomislav@malik:~$
也可以使用递归列表的-R标志(参见svn help
list)。