]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Merge branch 'fc/remote-bzr'
authorJunio C Hamano <gitster@pobox.com>
Fri, 26 Apr 2013 22:18:26 +0000 (15:18 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 26 Apr 2013 22:18:26 +0000 (15:18 -0700)
* fc/remote-bzr:
  remote-bzr: use proper push method

contrib/remote-helpers/git-remote-bzr

index aa7bc97beecc6af7adca5b6886d8e7c61f9173b1..a622122c86205c8dc58dcb75e145b3347f8e164b 100755 (executable)
@@ -633,12 +633,12 @@ def do_export(parser):
     for ref, revid in parsed_refs.iteritems():
         if ref == 'refs/heads/master':
             repo.generate_revision_history(revid, marks.get_tip('master'))
-            revno, revid = repo.last_revision_info()
             if peer:
-                if hasattr(peer, "import_last_revision_info_and_tags"):
-                    peer.import_last_revision_info_and_tags(repo, revno, revid)
-                else:
-                    peer.import_last_revision_info(repo.repository, revno, revid)
+                try:
+                    repo.push(peer, stop_revision=revid)
+                except bzrlib.errors.DivergedBranches:
+                    print "error %s non-fast forward" % ref
+                    continue
             else:
                 wt = repo.bzrdir.open_workingtree()
                 wt.update()