Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Subversion URL shortcuts

There is one shortcut I know of, ^ which means "the base URL of the current repository". I know there a bunch of other ones introduced with Subversion 1.6. What are they?

like image 579
Thomas R Avatar asked Oct 19 '10 21:10

Thomas R


People also ask

What is svn URL?

As illustrated throughout this book, Subversion uses URLs to identify versioned resources in Subversion repositories. For the most part, these URLs use the standard syntax, allowing for server names and port numbers to be specified as part of the URL: $ svn checkout http://svn.example.com:9834/repos …


1 Answers

  • '../' : Parent directory's URL (only at start of URL)
  • '^/' : Repository root URL
  • '/' : Server URL
  • '//' : Relative to protocol of server URL (e.g. http://)
like image 179
zellus Avatar answered Oct 01 '22 23:10

zellus