Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pushing mercurial repo without pushing subrepos

I'm using Mercurial 1.6. I have a repo with a few subrepos (11). I would like to push the parent repo to the default remote repo without pushing the child repos. Reasons for wanting to do this include:

  • I'm using SSH repos, and it takes a long time to establish a connection and push nothing to each of the subrepos.
  • I have commits in subrepos I don't want propagated to the remote repos (yet).
  • Subrepos have named branches that should not be propagated to the repote repos (and there's apparently no way to pass branch names to the push operation of the subrepos).

However, I've been unable to find a way to accomplish this. I tried deleting the content of .hgsub and .hgsubstate (without committing), but still mercurial insists on pushing the subrepos.

How can I push the changes from the local repo to the remote repo and ignore the subrepos temporarily?

like image 744
Jason R. Coombs Avatar asked Jul 09 '10 13:07

Jason R. Coombs


1 Answers

I think you'll need to make local clones of the subrepos.

The problem with pushing the main repo without pushing the subrepos is that the contents of the subrepos are not part of the main repo - only their states are. The contents are referenced from the original location specified in .hgsub. So your main repo's .hgsubstate says "subrepo A is at revision abcd1234", but abcd1234 is a change you made that you don't want to push... and now what would happen if you cloned the main repo? It'd try to clone the subrepo from its original location and update it to abcd1234, but that revision doesn't exist in the original location, so the clone would fail.

Instead, you can make local clones of each external repository and reference those as the external locations of the subrepos. Then when you push the main repo, the subrepo changes will only propagate to your local clones. When you're ready to share those changes, just go over to the local clones and push from there, and you'll be able to pass branch names and so on.

like image 63
Jesse McGrew Avatar answered Sep 24 '22 08:09

Jesse McGrew