mercurial/helptext/urls.txt
changeset 46905 95a5ed7db9ca
parent 43632 2e017696181f
equal deleted inserted replaced
46904:ede52e19c752 46905:95a5ed7db9ca
     3   local/filesystem/path[#revision]
     3   local/filesystem/path[#revision]
     4   file://local/filesystem/path[#revision]
     4   file://local/filesystem/path[#revision]
     5   http://[user[:pass]@]host[:port]/[path][#revision]
     5   http://[user[:pass]@]host[:port]/[path][#revision]
     6   https://[user[:pass]@]host[:port]/[path][#revision]
     6   https://[user[:pass]@]host[:port]/[path][#revision]
     7   ssh://[user@]host[:port]/[path][#revision]
     7   ssh://[user@]host[:port]/[path][#revision]
       
     8   path://pathname
     8 
     9 
     9 Paths in the local filesystem can either point to Mercurial
    10 Paths in the local filesystem can either point to Mercurial
    10 repositories or to bundle files (as created by :hg:`bundle` or
    11 repositories or to bundle files (as created by :hg:`bundle` or
    11 :hg:`incoming --bundle`). See also :hg:`help paths`.
    12 :hg:`incoming --bundle`). See also :hg:`help paths`.
    12 
    13 
    62   pull-like commands (including incoming and outgoing).
    63   pull-like commands (including incoming and outgoing).
    63 
    64 
    64 default-push:
    65 default-push:
    65   The push command will look for a path named 'default-push', and
    66   The push command will look for a path named 'default-push', and
    66   prefer it over 'default' if both are defined.
    67   prefer it over 'default' if both are defined.
       
    68 
       
    69 These alias can also be use in the `path://` scheme::
       
    70 
       
    71   [paths]
       
    72   alias1 = URL1
       
    73   alias2 = path://alias1
       
    74   ...
       
    75 
       
    76 check :hg:`help config.paths` for details about the behavior of such "sub-path".