Pagine

Tuesday 18 October 2016

SVN tutorial n 5 - info

The svn info command shows information about a local or remote item. The synopsis for local info is:
 svn info 
or
 svn info <path>
Example:
 svn info .
Instead for svn remote info use the command:
 svn info <url_repository>
Example
 svn info https://mysvnrep/svn/myproject/trunk
You can use the -r option for info about a precise version, without this option refers to the head version
 svn info -r 1234
The output is available in XML format by passing the --xml option:
 svn info --xml

No comments:

Post a Comment