Differences between revisions 6 and 7
Revision 6 as of 2009-05-19 19:30:57
Size: 824
Editor: localhost
Comment: converted to 1.6 markup
Revision 7 as of 2010-08-28 15:07:55
Size: 829
Editor: abuehl
Comment:
Deletions are marked like this. Additions are marked like this.
Line 26: Line 26:
Line 28: Line 27:
CategoryExtension CategoryBundledExtension

Fetch extension

This extension is currently being distributed along with Mercurial.

Author: Vadim Gelfer

Overview

This extension is a convenience wrapper. In the simplest case, hg fetch acts like hg pull -u -- it pulls changes from a remote repository into a local one and updates the working directory. (This is like the "update" command as found in Subversion or CVS.)

If the pulled changes require merging, the fetch extension attempts an hg merge followed by an hg commit.

Configuration

To enable the extension, add the following lines to your .hgrc:

[extensions]
hgext.fetch=

Usage

hg fetch [SOURCE]

Where SOURCE is a path or URL.

Use hg help fetch for additional options.


CategoryBundledExtension

FetchExtension (last edited 2013-02-22 11:11:53 by proxy01)