git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/47] remote-hg: fixes for next
@ 2013-05-14  4:36 Felipe Contreras
  2013-05-14  4:36 ` [PATCH 01/47] remote-hg: trivial cleanups Felipe Contreras
                   ` (46 more replies)
  0 siblings, 47 replies; 50+ messages in thread
From: Felipe Contreras @ 2013-05-14  4:36 UTC (permalink / raw)
  To: git; +Cc: Junio C Hamano, Jeff King, Felipe Contreras

Hi,

I've been cooking these for some time now, and they seem to be mostly ready.
The major changes are:

 1) Use our own custom push() method that allows us to push bookmarks without
    having to force a push.

 2) Switch from revision numbers to SHA-1s in the marks.

 3) Use a common repsitory so multiple remotes chan share the same objects.

 4) Cleaned up and add a ton of tests

With these, we pass all the tests from gitifyhg as well as our own.

Felipe Contreras (47):
  remote-hg: trivial cleanups
  remote-hg: get rid of unused exception checks
  remote-hg: enable track-branches in hg-git mode
  remote-hg: add new get_config_bool() helper
  remote-hg: fix new branch creation
  remote-hg: disable forced push by default
  remote-hg: don't push fake 'master' bookmark
  remote-hg: update bookmarks when pulling
  remote-hg: test: be a little more quiet
  remote-hg: trivial reorganization
  remote-helpers: test: cleanup white-spaces
  remote-helpers: test: cleanup style
  remote-helpers: tests: general improvements
  remote-helpers: test: simplify remote URLs
  remote-hg: test: simplify previous branch checkout
  remote-hg: load all extensions
  remote-hg: use a shared repository store
  remote-hg: shuffle some code
  remote-hg: improve node traversing
  remote-hg: add version checks to the marks
  remote-hg: switch from revisions to SHA-1 noteids
  remote-hg: upgrade version 1 marks
  remote-hg: ensure remote rebasing works
  remote-hg: trivial cleanups
  remote-hg: improve progress calculation
  remote-hg: always point HEAD to master
  remote-bzr: simplify test checks
  remote-hg: add check_bookmark() test helper
  remote-hg: add remote tests
  remote-hg: add test to push new bookmark
  remote-hg: add test for diverged push
  remote-hg: add test for bookmark diverge
  remote-hg: add test for new bookmark special
  remote-hg: add test for big push
  remote-hg: add test for failed double push
  remote-hg: reorganize bookmark handling
  remote-hg: force remote bookmark push selectively
  remote-hg: only update necessary revisions
  remote-hg: implement custom  push()
  remote-hg: implement custom checkheads()
  remote-hg: pass around revision refs
  remote-hg: check diverged bookmarks
  remote-hg: simplify branch_tip()
  remote-hg: improve branch listing
  remote-hg: use remote 'default' not local one
  remote-hg: improve lightweight tag author
  remote-hg: remove files before modifications

 contrib/remote-helpers/git-remote-hg     | 444 ++++++++++++++++++----------
 contrib/remote-helpers/test-bzr.sh       | 490 +++++++++++++++---------------
 contrib/remote-helpers/test-hg-bidi.sh   |  33 +--
 contrib/remote-helpers/test-hg-hg-git.sh |  47 ++-
 contrib/remote-helpers/test-hg.sh        | 492 +++++++++++++++++++++++++------
 5 files changed, 974 insertions(+), 532 deletions(-)

-- 
1.8.3.rc1.579.g184e698

^ permalink raw reply	[flat|nested] 50+ messages in thread

end of thread, other threads:[~2013-05-14 21:12 UTC | newest]

Thread overview: 50+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-14  4:36 [PATCH 00/47] remote-hg: fixes for next Felipe Contreras
2013-05-14  4:36 ` [PATCH 01/47] remote-hg: trivial cleanups Felipe Contreras
2013-05-14  4:36 ` [PATCH 02/47] remote-hg: get rid of unused exception checks Felipe Contreras
2013-05-14  4:36 ` [PATCH 03/47] remote-hg: enable track-branches in hg-git mode Felipe Contreras
2013-05-14  4:36 ` [PATCH 04/47] remote-hg: add new get_config_bool() helper Felipe Contreras
2013-05-14  4:36 ` [PATCH 05/47] remote-hg: fix new branch creation Felipe Contreras
2013-05-14  4:36 ` [PATCH 06/47] remote-hg: disable forced push by default Felipe Contreras
2013-05-14  4:36 ` [PATCH 07/47] remote-hg: don't push fake 'master' bookmark Felipe Contreras
2013-05-14  4:36 ` [PATCH 08/47] remote-hg: update bookmarks when pulling Felipe Contreras
2013-05-14  4:36 ` [PATCH 09/47] remote-hg: test: be a little more quiet Felipe Contreras
2013-05-14  4:36 ` [PATCH 10/47] remote-hg: trivial reorganization Felipe Contreras
2013-05-14  4:36 ` [PATCH 11/47] remote-helpers: test: cleanup white-spaces Felipe Contreras
2013-05-14  4:36 ` [PATCH 12/47] remote-helpers: test: cleanup style Felipe Contreras
2013-05-14  4:36 ` [PATCH 13/47] remote-helpers: tests: general improvements Felipe Contreras
2013-05-14  4:36 ` [PATCH 14/47] remote-helpers: test: simplify remote URLs Felipe Contreras
2013-05-14  4:36 ` [PATCH 15/47] remote-hg: test: simplify previous branch checkout Felipe Contreras
2013-05-14  4:36 ` [PATCH 16/47] remote-hg: load all extensions Felipe Contreras
2013-05-14 21:12   ` Eric Sunshine
2013-05-14  4:36 ` [PATCH 17/47] remote-hg: use a shared repository store Felipe Contreras
2013-05-14  4:36 ` [PATCH 18/47] remote-hg: shuffle some code Felipe Contreras
2013-05-14  4:36 ` [PATCH 19/47] remote-hg: improve node traversing Felipe Contreras
2013-05-14  4:36 ` [PATCH 20/47] remote-hg: add version checks to the marks Felipe Contreras
2013-05-14  4:36 ` [PATCH 21/47] remote-hg: switch from revisions to SHA-1 noteids Felipe Contreras
2013-05-14  4:36 ` [PATCH 22/47] remote-hg: upgrade version 1 marks Felipe Contreras
2013-05-14  4:36 ` [PATCH 23/47] remote-hg: ensure remote rebasing works Felipe Contreras
2013-05-14  4:36 ` [PATCH 24/47] remote-hg: trivial cleanups Felipe Contreras
2013-05-14  4:36 ` [PATCH 25/47] remote-hg: improve progress calculation Felipe Contreras
2013-05-14  4:36 ` [PATCH 26/47] remote-hg: always point HEAD to master Felipe Contreras
2013-05-14  4:36 ` [PATCH 27/47] remote-bzr: simplify test checks Felipe Contreras
2013-05-14  4:36 ` [PATCH 28/47] remote-hg: add check_bookmark() test helper Felipe Contreras
2013-05-14  4:36 ` [PATCH 29/47] remote-hg: add remote tests Felipe Contreras
2013-05-14  4:36 ` [PATCH 30/47] remote-hg: add test to push new bookmark Felipe Contreras
2013-05-14  4:36 ` [PATCH 31/47] remote-hg: add test for diverged push Felipe Contreras
2013-05-14  4:36 ` [PATCH 32/47] remote-hg: add test for bookmark diverge Felipe Contreras
2013-05-14  4:36 ` [PATCH 33/47] remote-hg: add test for new bookmark special Felipe Contreras
2013-05-14 21:09   ` Eric Sunshine
2013-05-14  4:36 ` [PATCH 34/47] remote-hg: add test for big push Felipe Contreras
2013-05-14  4:36 ` [PATCH 35/47] remote-hg: add test for failed double push Felipe Contreras
2013-05-14  4:36 ` [PATCH 36/47] remote-hg: reorganize bookmark handling Felipe Contreras
2013-05-14  4:37 ` [PATCH 37/47] remote-hg: force remote bookmark push selectively Felipe Contreras
2013-05-14  4:37 ` [PATCH 38/47] remote-hg: only update necessary revisions Felipe Contreras
2013-05-14  4:37 ` [PATCH 39/47] remote-hg: implement custom push() Felipe Contreras
2013-05-14  4:37 ` [PATCH 40/47] remote-hg: implement custom checkheads() Felipe Contreras
2013-05-14  4:37 ` [PATCH 41/47] remote-hg: pass around revision refs Felipe Contreras
2013-05-14  4:37 ` [PATCH 42/47] remote-hg: check diverged bookmarks Felipe Contreras
2013-05-14  4:37 ` [PATCH 43/47] remote-hg: simplify branch_tip() Felipe Contreras
2013-05-14  4:37 ` [PATCH 44/47] remote-hg: improve branch listing Felipe Contreras
2013-05-14  4:37 ` [PATCH 45/47] remote-hg: use remote 'default' not local one Felipe Contreras
2013-05-14  4:37 ` [PATCH 46/47] remote-hg: improve lightweight tag author Felipe Contreras
2013-05-14  4:37 ` [PATCH 47/47] remote-hg: remove files before modifications Felipe Contreras

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).