views:

16

answers:

1

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?

A: 
  • '../' : Parent directory's URL (only at start of URL)
  • '^/' : Repository root URL
  • '/' : Server URL
  • '//' : Relative to protocol of server URL (e.g. http://)

What’s New in Subversion 1.6? is an interesting source of 1.6 changes.

zellus