Mercurial > hg-stable
changeset 7693:e040f9d6b2f3
consolidated url help into urls help topic and added information about path aliases
author | Bill Barry <after.fallout@gmail.com> |
---|---|
date | Thu, 22 Jan 2009 11:02:50 -0700 |
parents | a55de9e2726f |
children | 2ceeb1423544 |
files | mercurial/commands.py mercurial/help.py |
diffstat | 2 files changed, 71 insertions(+), 49 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Thu Jan 22 20:49:47 2009 +0100 +++ b/mercurial/commands.py Thu Jan 22 11:02:50 2009 -0700 @@ -589,12 +589,11 @@ If the -U option is used, the new clone will contain only a repository (.hg) and no working copy (the working copy parent is the null revision). - See pull for valid source format details. + See 'hg help urls' for valid source format details. It is possible to specify an ssh:// URL as the destination, but no .hg/hgrc and working directory will be created on the remote side. - Look at the help text for the pull command for important details - about ssh:// URLs. + Look at the help text for urls for important details about ssh:// URLs. """ cmdutil.setremoteconfig(ui, opts) hg.clone(ui, source, dest, @@ -1788,8 +1787,7 @@ If no directory is given, the current directory is used. It is possible to specify an ssh:// URL as the destination. - Look at the help text for the pull command for important details - about ssh:// URLs. + See 'hg help urls' for more information. """ cmdutil.setremoteconfig(ui, opts) hg.repository(ui, dest, create=1) @@ -2117,6 +2115,8 @@ definition of available names. Path names are defined in the [paths] section of /etc/mercurial/hgrc and $HOME/.hgrc. If run inside a repository, .hg/hgrc is used, too. + + See 'hg help urls' for more information. """ if search: for name, path in ui.configitems("paths"): @@ -2151,34 +2151,8 @@ or URL and adds them to the local repository. By default, this does not update the copy of the project in the working directory. - Valid URLs are of the form: - - local/filesystem/path (or file://local/filesystem/path) - http://[user[:pass]@]host[:port]/[path] - https://[user[:pass]@]host[:port]/[path] - ssh://[user[:pass]@]host[:port]/[path] - - Paths in the local filesystem can either point to Mercurial - repositories or to bundle files (as created by 'hg bundle' or - 'hg incoming --bundle'). - - An optional identifier after # indicates a particular branch, tag, - or changeset to pull. - - Some notes about using SSH with Mercurial: - - SSH requires an accessible shell account on the destination machine - and a copy of hg in the remote path or specified with as remotecmd. - - path is relative to the remote user's home directory by default. - Use an extra slash at the start of a path to specify an absolute path: - ssh://example.com//tmp/repository - - Mercurial doesn't use its own compression via SSH; the right thing - to do is to configure it in your ~/.ssh/config, e.g.: - Host *.mylocalnetwork.example.com - Compression no - Host * - Compression yes - Alternatively specify "ssh -C" as your ssh command in your hgrc or - with the --ssh command line option. + If SOURCE is omitted, the 'default' path will be used. + See 'hg help urls' for more information. """ source, revs, checkout = hg.parseurl(ui.expandpath(source), opts.get('rev')) cmdutil.setremoteconfig(ui, opts) @@ -2210,22 +2184,12 @@ increase the number of remote heads. This generally indicates the the client has forgotten to pull and merge before pushing. - Valid URLs are of the form: - - local/filesystem/path (or file://local/filesystem/path) - ssh://[user[:pass]@]host[:port]/[path] - http://[user[:pass]@]host[:port]/[path] - https://[user[:pass]@]host[:port]/[path] - - An optional identifier after # indicates a particular branch, tag, - or changeset to push. If -r is used, the named changeset and all its - ancestors will be pushed to the remote repository. - - Look at the help text for the pull command for important details - about ssh:// URLs. - - Pushing to http:// and https:// URLs is only possible, if this - feature is explicitly enabled on the remote Mercurial server. + If -r is used, the named changeset and all its ancestors will be pushed + to the remote repository. + + Look at the help text for urls for important details about ssh:// URLs. + If DESTINATION is omitted, a default path will be used. + See 'hg help urls' for more information. """ dest, revs, checkout = hg.parseurl( ui.expandpath(dest or 'default-push', dest or 'default'), opts.get('rev'))
--- a/mercurial/help.py Thu Jan 22 20:49:47 2009 +0100 +++ b/mercurial/help.py Thu Jan 22 11:02:50 2009 -0700 @@ -331,4 +331,62 @@ "foo bar" becomes "foo%20bar". - user: Any text. Returns the user portion of an email address. ''')), + + (['urls'], _('Url Paths'), + _(r''' + Valid URLs are of the form: + + local/filesystem/path (or file://local/filesystem/path) + http://[user[:pass]@]host[:port]/[path] + https://[user[:pass]@]host[:port]/[path] + ssh://[user[:pass]@]host[:port]/[path] + + Paths in the local filesystem can either point to Mercurial + repositories or to bundle files (as created by 'hg bundle' or + 'hg incoming --bundle'). + + An optional identifier after # indicates a particular branch, tag, + or changeset to deal with in the remote repository. + + Some features, such as pushing to http:// and https:// URLs are + only possible if the feature is explicitly enabled on the + remote Mercurial server. + + Some notes about using SSH with Mercurial: + - SSH requires an accessible shell account on the destination machine + and a copy of hg in the remote path or specified with as remotecmd. + - path is relative to the remote user's home directory by default. + Use an extra slash at the start of a path to specify an absolute path: + ssh://example.com//tmp/repository + - Mercurial doesn't use its own compression via SSH; the right thing + to do is to configure it in your ~/.ssh/config, e.g.: + Host *.mylocalnetwork.example.com + Compression no + Host * + Compression yes + Alternatively specify "ssh -C" as your ssh command in your hgrc or + with the --ssh command line option. + + These urls can all be stored in your hgrc with path aliases under the + [paths] section like so: + [paths] + alias1 = URL1 + alias2 = URL2 + ... + + You can then use the alias for any command that uses a url (for example + 'hg pull alias1' would pull from the 'alias1' path). + + Two path aliases are more important because they are used as defaults + when you do not provide the url to a command: + + default: + When you create a repository with hg clone, the clone command saves + the location of the source repository as the 'default' path. This is + then used when you omit a path from the push and pull commands. + + default-push: + The push command will look for a path named 'default-push', and + prefer it over 'default' if both are defined. + ''')), )