I have a Mercurial main-repository with one sub-repository, like this:
Main
.hg
.hgsub
.hgsubstate
<some_regular_files_and_subdirs>
Sub
.hg
<some_regular_files_and_subdirs>
And I wish to tag Sub
, only, while keeping Main/.hgsubstate
up-to-date (i.e. point to the changeset of Sub
resulting from the tagging process).
I don't want to tag the main-repository.
Is that possible without tagging from within Sub
and do some magic to get Main/.hgsubstate
up to date?