I have a master repo, which has some changes I do not want to commit.
I have a subrepo, which has changes that have already been committed.
I want to commit the changes subrepo revision in my master repo, without committing the changes to the files in the master repo.
I cannot seem to do this. I can't commit .hgsubstate
, and making a trivial change to a file to commit that does not commit the subrepo changes to the master repo.
foo
andbar
, have you tried doinghg ci -S -X foo -X bar
? – Sunstroke