sapling/doc/hg.1.txt

87 lines
2.3 KiB
Plaintext
Raw Normal View History

2005-05-27 18:16:58 +04:00
HG(1)
=====
Matt Mackall <mpm@selenic.com>
NAME
----
hg - Mercurial source code management system
2005-05-27 18:16:58 +04:00
SYNOPSIS
--------
2006-10-26 11:22:10 +04:00
'hg' [global option]... <command> [command/global option]... [argument]...
2005-05-27 18:16:58 +04:00
DESCRIPTION
-----------
The hg(1) command provides a command line interface to the Mercurial system.
COMMAND ELEMENTS
----------------
files ...::
indicates one or more filename or relative path filenames; see
"FILE NAME PATTERNS" for information on pattern matching
2005-05-27 18:16:58 +04:00
path::
indicates a path on the local machine
revision::
indicates a changeset which can be specified as a changeset revision
number, a tag, or a unique substring of the changeset hash value
2005-05-27 18:16:58 +04:00
repository path::
either the pathname of a local repository or the URI of a remote
repository. There are two available URI protocols, http:// which is
fast and the static-http:// protocol which is much slower but does not
require a special server on the web host.
2005-05-27 18:16:58 +04:00
include::hg.1.gendoc.txt[]
2005-05-27 18:16:58 +04:00
FILES
-----
.hgignore::
This file contains regular expressions (one per line) that describe file
names that should be ignored by hg. For details, see hgignore(5).
2005-05-27 18:16:58 +04:00
.hgtags::
This file contains changeset hash values and text tag names (one of each
2005-08-25 20:25:19 +04:00
separated by spaces) that correspond to tagged versions of the repository
2005-05-27 18:16:58 +04:00
contents.
/etc/mercurial/hgrc, $HOME/.hgrc, .hg/hgrc::
This file contains defaults and configuration. Values in .hg/hgrc
override those in $HOME/.hgrc, and these override settings made in the
global /etc/mercurial/hgrc configuration. See hgrc(5) for details of
the contents and format of these files.
Some commands (e.g. revert) produce backup files ending in .orig, if
the .orig file already exists and is not tracked by Mercurial, it
will be overwritten.
2005-05-27 18:16:58 +04:00
BUGS
----
Probably lots, please post them to the mailing list (See Resources below)
when you find them.
SEE ALSO
--------
hgignore(5), hgrc(5)
2005-05-27 18:16:58 +04:00
AUTHOR
------
Written by Matt Mackall <mpm@selenic.com>
RESOURCES
---------
http://selenic.com/mercurial[Main Web Site]
http://selenic.com/hg[Source code repository]
http://selenic.com/mailman/listinfo/mercurial[Mailing list]
COPYING
-------
Copyright \(C) 2005-2007 Matt Mackall.
2005-05-27 18:16:58 +04:00
Free use of this software is granted under the terms of the GNU General
Public License (GPL).