获取有关svn根存储库结构的信息

获取有关svn根存储库结构的信息,svn,Svn,我想知道如何使用SVNAPI获取有关svn根存储库结构的信息 例如,我有以下结构: http:/// /项目1 /项目2 我试过: svn列表http:///svn 还有svn列表-vhttp:///svn 作为回应,我只得到:/ 如何递归地获取信息 提前谢谢。svn列表似乎对我有用: tomislav@malik:~$ svn list http://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x .gdbinit ABOUT_APA

我想知道如何使用SVNAPI获取有关svn根存储库结构的信息

例如,我有以下结构:

http:///
/项目1
/项目2

我试过:
svn列表http:///svn 还有svn列表-vhttp:///svn

作为回应,我只得到:/

如何递归地获取信息


提前谢谢。

svn列表似乎对我有用:

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帮助
list)。

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帮助
list)。

感谢您的回复。我也试着先获取信息。svn info Repository Root:然后基于Repository Root尝试使用svn list显示存储库列表。在本例中,它可以工作,但在我的示例中,我没有得到列表。谢谢你的回复。我也试着先获取信息。svn info Repository Root:然后基于Repository Root尝试使用svn list显示存储库列表。在本例中,它可以工作,但在我的示例中,我没有得到列表。谢谢