Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does SVN checkout do?

Tags:

svn

Does "SVN" checkout put a build.xml file within the folder that is chosen?

Currently, I do not have permissions to the SVN repository. So I thought that I might just skip the SVN checkout step and proceed with the build. But I am getting an error that says Build.xml file does not exist. Is this build.xml file provided once the SVN checkout is performed?

like image 507
Croeber Avatar asked Dec 27 '12 17:12

Croeber


1 Answers

svn checkout checks out (retrieves) a working copy of the repository into the specified folder. If you don't have access to the repository, and there's not already a current copy of the source in the folder, you can't possibly do a build.

If there is a current copy of the source there, it should include build.xml.

If you had access to the repository, svn checkout would only retrieve a copy of build.xml if there was one in the repository for the copy being checked out. In other words, it won't magically add a build.xml if one doesn't exist in the repository.

like image 120
Ken White Avatar answered Sep 28 '22 07:09

Ken White