I am using Mercurial version 5.0.2.
On one server I pushed a changeset. On another server I pulled but don't see it. It looks that server where I pushed is on different branch compared with another server. My confusion is that hg tip show my changes but actually repository was not changed. How could I align both servers?
Server where I push:
$ hg sum
parent: 248:5d07ada6be64 tip
Add Pass/Fail flag
branch: default
commit: 3 unknown (clean)
update: 13 new changesets, 6 branch heads (merge)
Server where I pull:
$ hg tip
changeset: 248:5d07ada6be64
tag: tip
parent: 241:c2d0cdc625a8
user: vhabhsvoldme
date: Mon Dec 07 11:27:24 2020 -0500
summary: Add Pass/Fail flag
I run hg update but I see that file was not updated.
If I delete my repository where I pull and clone it from the server where I pushed ... it worked correct but when I pull it actually did not update.
Could you advice how to align my servers?
Thanks