From: Richard Hansen <rhansen@bbn.com>
To: gitster@pobox.com
Cc: git@vger.kernel.org, felipe.contreras@gmail.com,
srabbelier@gmail.com, Richard Hansen <rhansen@bbn.com>
Subject: [PATCH v3] remote-bzr: support the new 'force' option
Date: Mon, 18 Nov 2013 00:08:39 -0500 [thread overview]
Message-ID: <1384751319-18798-1-git-send-email-rhansen@bbn.com> (raw)
In-Reply-To: <1384289830-5471-1-git-send-email-felipe.contreras@gmail.com>
Signed-off-by: Richard Hansen <rhansen@bbn.com>
Reviewed-by: Felipe Contreras <felipe.contreras@gmail.com>
---
This is a reroll of:
http://article.gmane.org/gmane.comp.version-control.git/237699
based on feedback from Felipe:
http://article.gmane.org/gmane.comp.version-control.git/237756
This patch is an optional extension to Felipe's "transport-helper:
updates" patch series:
http://thread.gmane.org/gmane.comp.version-control.git/237738
and it requires those changes to work.
Changes from v2:
* remove 'import types' (no longer necessary)
* change '(opt, val) = parser[1:3]' to 'opt, val = parser[1:3]'
* add 'Reviewed-by: Felipe Contreras <felipe.contreras@gmail.com>'
to commit message based on Felipe's comment in:
http://article.gmane.org/gmane.comp.version-control.git/237756
contrib/remote-helpers/git-remote-bzr | 31 ++++++++++++++++++++++++++++++-
contrib/remote-helpers/test-bzr.sh | 22 +++++++++++++++++++++-
2 files changed, 51 insertions(+), 2 deletions(-)
diff --git a/contrib/remote-helpers/git-remote-bzr b/contrib/remote-helpers/git-remote-bzr
index 7e34532..ea0e82a 100755
--- a/contrib/remote-helpers/git-remote-bzr
+++ b/contrib/remote-helpers/git-remote-bzr
@@ -684,7 +684,8 @@ def do_export(parser):
peer = bzrlib.branch.Branch.open(peers[name],
possible_transports=transports)
try:
- peer.bzrdir.push_branch(branch, revision_id=revid)
+ peer.bzrdir.push_branch(branch, revision_id=revid,
+ overwrite=force)
except bzrlib.errors.DivergedBranches:
print "error %s non-fast forward" % ref
continue
@@ -718,8 +719,32 @@ def do_capabilities(parser):
print "*import-marks %s" % path
print "*export-marks %s" % path
+ print "option"
print
+class InvalidOptionValue(Exception):
+ pass
+
+def get_bool_option(val):
+ if val == 'true':
+ return True
+ elif val == 'false':
+ return False
+ else:
+ raise InvalidOptionValue()
+
+def do_option(parser):
+ global force
+ opt, val = parser[1:3]
+ try:
+ if opt == 'force':
+ force = get_bool_option(val)
+ print 'ok'
+ else:
+ print 'unsupported'
+ except InvalidOptionValue:
+ print "error '%s' is not a valid value for option '%s'" % (val, opt)
+
def ref_is_valid(name):
return not True in [c in name for c in '~^: \\']
@@ -882,6 +907,7 @@ def main(args):
global is_tmp
global branches, peers
global transports
+ global force
alias = args[1]
url = args[2]
@@ -895,6 +921,7 @@ def main(args):
branches = {}
peers = {}
transports = []
+ force = False
if alias[5:] == url:
is_tmp = True
@@ -930,6 +957,8 @@ def main(args):
do_import(parser)
elif parser.check('export'):
do_export(parser)
+ elif parser.check('option'):
+ do_option(parser)
else:
die('unhandled command: %s' % line)
sys.stdout.flush()
diff --git a/contrib/remote-helpers/test-bzr.sh b/contrib/remote-helpers/test-bzr.sh
index 1e53ff9..4f379c2 100755
--- a/contrib/remote-helpers/test-bzr.sh
+++ b/contrib/remote-helpers/test-bzr.sh
@@ -66,13 +66,33 @@ test_expect_success 'pushing' '
test_cmp expected actual
'
+test_expect_success 'forced pushing' '
+ (
+ cd gitrepo &&
+ echo three-new >content &&
+ git commit -a --amend -m three-new &&
+ git push -f
+ ) &&
+
+ (
+ cd bzrrepo &&
+ # the forced update overwrites the bzr branch but not the bzr
+ # working directory (it tries to merge instead)
+ bzr revert
+ ) &&
+
+ echo three-new >expected &&
+ cat bzrrepo/content >actual &&
+ test_cmp expected actual
+'
+
test_expect_success 'roundtrip' '
(
cd gitrepo &&
git pull &&
git log --format="%s" -1 origin/master >actual
) &&
- echo three >expected &&
+ echo three-new >expected &&
test_cmp expected actual &&
(cd gitrepo && git push && git pull) &&
--
1.8.5.rc2.10.g50cf47a
prev parent reply other threads:[~2013-11-18 5:09 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-12 20:56 [PATCH v7 00/11] transport-helper: updates Felipe Contreras
2013-11-12 20:56 ` [PATCH v7 01/11] transport-helper: fix extra lines Felipe Contreras
2013-11-12 20:56 ` [PATCH v7 02/11] transport-helper: don't update refs in dry-run Felipe Contreras
2013-11-12 20:56 ` [PATCH v7 03/11] transport-helper: add 'force' to 'export' helpers Felipe Contreras
2013-11-12 20:56 ` [PATCH v7 04/11] transport-helper: check for 'forced update' message Felipe Contreras
2013-11-12 20:56 ` [PATCH v6 05/10] fast-export: improve argument parsing Felipe Contreras
2013-11-12 20:56 ` [PATCH v7 05/11] test-hg.sh: tests are now expected to pass Felipe Contreras
2013-11-12 20:57 ` [PATCH v6 06/10] fast-export: add new --refspec option Felipe Contreras
2013-11-12 20:57 ` [PATCH v7 06/11] fast-export: improve argument parsing Felipe Contreras
2013-11-12 20:57 ` [PATCH v7 07/11] fast-export: add new --refspec option Felipe Contreras
2013-11-12 20:57 ` [PATCH v6 07/10] transport-helper: add support for old:new refspec Felipe Contreras
2013-11-12 20:57 ` [PATCH v6 08/10] fast-import: add support to delete refs Felipe Contreras
2013-11-12 20:57 ` [PATCH v7 08/11] transport-helper: add support for old:new refspec Felipe Contreras
2013-11-12 20:57 ` [PATCH v6 09/10] fast-export: add support to delete refs Felipe Contreras
2013-11-12 20:57 ` [PATCH v7 09/11] fast-import: " Felipe Contreras
2013-11-12 20:57 ` [PATCH v7 10/11] fast-export: " Felipe Contreras
2013-11-12 20:57 ` [PATCH v6 10/10] transport-helper: add support to delete branches Felipe Contreras
2013-11-12 20:57 ` [PATCH v7 11/11] " Felipe Contreras
2013-11-12 22:24 ` [PATCH v7 00/11] transport-helper: updates Junio C Hamano
2013-11-18 5:08 ` Richard Hansen [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1384751319-18798-1-git-send-email-rhansen@bbn.com \
--to=rhansen@bbn.com \
--cc=felipe.contreras@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=srabbelier@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).