Pagine

Friday 14 October 2016

SVN tutorial n 1 - checkout

Checkout of last revision

svn co <path_svn>
Example:
svn co https://mysvnrep/svn/myproject/trunk
or
svn checkout <path_svn>
Example:
svn checkout https://mysvnrep/svn/myproject/trunk

Checkout with rename the folder name target

svn co <path_svn> <folder_name>
Example:
svn co https://mysvnrep/svn/myproject/trunk myproject

Checkout of a precision revision

svn co -r <revision_number> <path_svn>
Example:
svn co -r 236 https://mysvnrep/svn/myproject/trunk

No comments:

Post a Comment