I want to get list of files with full path from SVN repository.
By using the command(svn list -R 192.0.0.0/Project/BRANCH1
) . I am getting list of files with full path but it is displaying as parentfolder
then parentfolder/subfolder
.
For example , I have svn repository as 192.0.0.0/Project/BRANCH1
In that Branch1 I have file like success.jsp
. By using the command(svn list -R 192.0.0.0/Project/BRANCH1
)
It is displaying as BRANCH1/
then
BRANCH1/success.jsp
.
Here i want simply as BRANCH1/success.jsp
.
Also I used (svn list) command to get list of files but,
It is simply displaying as the folder name of the filebranch (BRANCH1
) not that jsp page name. It is displaying as BRANCH1
I want to display as BRANCH1/success.jsp
svnコマンドを使用して、フルパスでsvnからファイルのリストを取得するのを手伝ってください。