fetch.py
167 lines
| 6.0 KiB
| text/x-python
|
PythonLexer
/ hgext / fetch.py
Vadim Gelfer
|
r2800 | # fetch.py - pull and merge remote changes | ||
# | ||||
# Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> | ||||
# | ||||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
Martin Geisler
|
r8228 | |||
Augie Fackler
|
r16669 | '''pull, update and merge in one command (DEPRECATED)''' | ||
Vadim Gelfer
|
r2800 | |||
Pulkit Goyal
|
r29121 | from __future__ import absolute_import | ||
Matt Mackall
|
r3891 | from mercurial.i18n import _ | ||
Pulkit Goyal
|
r29121 | from mercurial.node import ( | ||
short, | ||||
) | ||||
from mercurial import ( | ||||
cmdutil, | ||||
error, | ||||
exchange, | ||||
hg, | ||||
lock, | ||||
Pulkit Goyal
|
r34978 | pycompat, | ||
Yuya Nishihara
|
r32337 | registrar, | ||
Pulkit Goyal
|
r29121 | util, | ||
) | ||||
Vadim Gelfer
|
r2800 | |||
Pulkit Goyal
|
r29121 | release = lock.release | ||
Gregory Szorc
|
r21247 | cmdtable = {} | ||
Yuya Nishihara
|
r32337 | command = registrar.command(cmdtable) | ||
Augie Fackler
|
r29841 | # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for | ||
Augie Fackler
|
r25186 | # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should | ||
# be specifying the version(s) of Mercurial they are tested with, or | ||||
# leave the attribute unspecified. | ||||
Augie Fackler
|
r29841 | testedwith = 'ships-with-hg-core' | ||
Augie Fackler
|
r16743 | |||
Gregory Szorc
|
r21247 | @command('fetch', | ||
[('r', 'rev', [], | ||||
_('a specific revision you would like to pull'), _('REV')), | ||||
FUJIWARA Katsunori
|
r33013 | ('', 'edit', None, _('invoke editor on commit messages')), | ||
Gregory Szorc
|
r21247 | ('', 'force-editor', None, _('edit commit message (DEPRECATED)')), | ||
('', 'switch-parent', None, _('switch parents when merging')), | ||||
Yuya Nishihara
|
r32375 | ] + cmdutil.commitopts + cmdutil.commitopts2 + cmdutil.remoteopts, | ||
Gregory Szorc
|
r21247 | _('hg fetch [SOURCE]')) | ||
Vadim Gelfer
|
r2800 | def fetch(ui, repo, source='default', **opts): | ||
Martin Geisler
|
r7598 | '''pull changes from a remote repository, merge new changes if needed. | ||
Vadim Gelfer
|
r2800 | |||
Martin Geisler
|
r9258 | This finds all changes from the repository at the specified path | ||
or URL and adds them to the local repository. | ||||
Vadim Gelfer
|
r2800 | |||
Martin Geisler
|
r9258 | If the pulled changes add a new branch head, the head is | ||
automatically merged, and the result of the merge is committed. | ||||
Otherwise, the working directory is updated to include the new | ||||
changes. | ||||
Bryan O'Sullivan
|
r6206 | |||
Kevin Bullock
|
r16476 | When a merge is needed, the working directory is first updated to | ||
the newly pulled changes. Local changes are then merged into the | ||||
pulled changes. To switch the merge order, use --switch-parent. | ||||
Thomas Arendsen Hein
|
r6163 | |||
Martin Geisler
|
r10973 | See :hg:`help dates` for a list of formats valid for -d/--date. | ||
Matt Mackall
|
r12711 | |||
Returns 0 on success. | ||||
Thomas Arendsen Hein
|
r6163 | ''' | ||
Vadim Gelfer
|
r2800 | |||
Pulkit Goyal
|
r34978 | opts = pycompat.byteskwargs(opts) | ||
Dirkjan Ochtman
|
r6941 | date = opts.get('date') | ||
if date: | ||||
opts['date'] = util.parsedate(date) | ||||
Martin von Zweigbergk
|
r22676 | parent, _p2 = repo.dirstate.parents() | ||
Sune Foldager
|
r7049 | branch = repo.dirstate.branch() | ||
Brodie Rao
|
r16719 | try: | ||
branchnode = repo.branchtip(branch) | ||||
except error.RepoLookupError: | ||||
branchnode = None | ||||
Sune Foldager
|
r7049 | if parent != branchnode: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('working directory not at branch tip'), | ||
timeless
|
r28964 | hint=_("use 'hg update' to check out branch tip")) | ||
Dirkjan Ochtman
|
r6941 | |||
wlock = lock = None | ||||
try: | ||||
wlock = repo.wlock() | ||||
lock = repo.lock() | ||||
Martin von Zweigbergk
|
r22676 | cmdutil.bailifchanged(repo) | ||
Benjamin Pollack
|
r7854 | bheads = repo.branchheads(branch) | ||
bheads = [head for head in bheads if len(repo[head].children()) == 0] | ||||
if len(bheads) > 1: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_('multiple heads in this branch ' | ||
Sune Foldager
|
r7007 | '(use "hg heads ." and "hg merge" to merge)')) | ||
Dirkjan Ochtman
|
r6941 | |||
Matt Mackall
|
r14556 | other = hg.peer(repo, opts, ui.expandpath(source)) | ||
Dirkjan Ochtman
|
r6941 | ui.status(_('pulling from %s\n') % | ||
Brodie Rao
|
r14076 | util.hidepassword(ui.expandpath(source))) | ||
Dirkjan Ochtman
|
r6941 | revs = None | ||
if opts['rev']: | ||||
Benoit Boissinot
|
r8532 | try: | ||
Dirkjan Ochtman
|
r6941 | revs = [other.lookup(rev) for rev in opts['rev']] | ||
Benoit Boissinot
|
r8532 | except error.CapabilityError: | ||
Martin Geisler
|
r16926 | err = _("other repository doesn't support revision lookup, " | ||
Benoit Boissinot
|
r8532 | "so a rev cannot be specified.") | ||
Pierre-Yves David
|
r26587 | raise error.Abort(err) | ||
Dirkjan Ochtman
|
r6941 | |||
Sune Foldager
|
r7007 | # Are there any changes at all? | ||
Pierre-Yves David
|
r22697 | modheads = exchange.pull(repo, other, heads=revs).cgresult | ||
Vadim Gelfer
|
r2800 | if modheads == 0: | ||
return 0 | ||||
Dirkjan Ochtman
|
r6941 | |||
Sune Foldager
|
r7007 | # Is this a simple fast-forward along the current branch? | ||
newheads = repo.branchheads(branch) | ||||
newchildren = repo.changelog.nodesbetween([parent], newheads)[2] | ||||
Matt Mackall
|
r15748 | if len(newheads) == 1 and len(newchildren): | ||
Sune Foldager
|
r7007 | if newchildren[0] != parent: | ||
Matt Mackall
|
r16091 | return hg.update(repo, newchildren[0]) | ||
Sune Foldager
|
r7007 | else: | ||
Matt Mackall
|
r12711 | return 0 | ||
Sune Foldager
|
r7007 | |||
# Are there more than one additional branch heads? | ||||
newchildren = [n for n in newchildren if n != parent] | ||||
Vadim Gelfer
|
r2800 | newparent = parent | ||
if newchildren: | ||||
newparent = newchildren[0] | ||||
Matt Mackall
|
r4917 | hg.clean(repo, newparent) | ||
Sune Foldager
|
r7007 | newheads = [n for n in newheads if n != newparent] | ||
Bryan O'Sullivan
|
r6206 | if len(newheads) > 1: | ||
Sune Foldager
|
r7007 | ui.status(_('not merging with %d other new branch heads ' | ||
'(use "hg heads ." and "hg merge" to merge them)\n') % | ||||
Vadim Gelfer
|
r2800 | (len(newheads) - 1)) | ||
Matt Mackall
|
r12711 | return 1 | ||
Sune Foldager
|
r7007 | |||
Matt Mackall
|
r15749 | if not newheads: | ||
return 0 | ||||
Sune Foldager
|
r7007 | # Otherwise, let's merge. | ||
Bryan O'Sullivan
|
r6206 | err = False | ||
if newheads: | ||||
# By default, we consider the repository we're pulling | ||||
# *from* as authoritative, so we merge our changes into | ||||
# theirs. | ||||
if opts['switch_parent']: | ||||
firstparent, secondparent = newparent, newheads[0] | ||||
else: | ||||
firstparent, secondparent = newheads[0], newparent | ||||
ui.status(_('updating to %d:%s\n') % | ||||
(repo.changelog.rev(firstparent), | ||||
short(firstparent))) | ||||
hg.clean(repo, firstparent) | ||||
ui.status(_('merging with %d:%s\n') % | ||||
(repo.changelog.rev(secondparent), short(secondparent))) | ||||
err = hg.merge(repo, secondparent, remind=False) | ||||
Dirkjan Ochtman
|
r6941 | |||
Vadim Gelfer
|
r2800 | if not err: | ||
Martin Geisler
|
r9183 | # we don't translate commit messages | ||
Idan Kamara
|
r14635 | message = (cmdutil.logmessage(ui, opts) or | ||
Martin Geisler
|
r9183 | ('Automated merge with %s' % | ||
Brodie Rao
|
r14076 | util.removeauth(other.url()))) | ||
FUJIWARA Katsunori
|
r21406 | editopt = opts.get('edit') or opts.get('force_editor') | ||
FUJIWARA Katsunori
|
r22000 | editor = cmdutil.getcommiteditor(edit=editopt, editform='fetch') | ||
n = repo.commit(message, opts['user'], opts['date'], editor=editor) | ||||
Vadim Gelfer
|
r2800 | ui.status(_('new changeset %d:%s merges remote changes ' | ||
'with local\n') % (repo.changelog.rev(n), | ||||
short(n))) | ||||
Bryan O'Sullivan
|
r6206 | |||
Matt Mackall
|
r12711 | return err | ||
Vadim Gelfer
|
r2825 | finally: | ||
Ronny Pfannschmidt
|
r8112 | release(lock, wlock) | ||