我正在制作一个批处理文件,用于从SVN中签出项目。我要求用户输入目录,当您到达所需的目录时,键入checkout,它将签出该项目目录。但是,我在下面的代码上遇到了一些麻烦。请帮忙。
if /i %choice%==1 (
cls
svn ls %svnroot_temp%
:top
set /p direct=Enter directory:
if %direct%=checkout( goto :checkout_area )
set svnroot_temp= %svnroot_temp%/%direct%
svn ls %svnroot_temp%
goto :top
)
我在哪里错了?
慕姐4208626