In my Hg repository (at Google Code) I have a directory that shouldn't be there. Basically I decided to move everything into a sub-directory (I had everything in the root), which worked fine but now there's a couple of 'dead' directories. Its my understanding HG works off files rather than tracking directories so I think that's what's happening.
Example
Original directory structure:
/
- includes/
- bootstrap
- index
Change made and pushed (this is what I see in my working copy, which is up-to-date):
/
- project/
- includes/
- bootstrap
- index
Result (this is what I see on the remote repo):
/
- includes/
- project/
- includes/
- bootstrap
- index
This only occurs on the remote repository, my working copy is fine. I've seen that the push
command can run remote commands at the remote repo - could there be something I could run using that?