I have been working on a branch and have made some commits. Now is there some way I can see in TortoiseHg if those commits have been pushed or are they still just local?
+4
A:
You can use hg outgoing
to see what would be sent if you pushed, and if a changeset doesn't show up in that list then it has been pushed to the specific remote repository you're testing.
There's no general "has been pushed" flag on a changeset because they can be pushed to multiple locations so it's not terribly meaningful.
Ry4an
2010-07-21 15:19:43
Thanks for the info. This is good to know (+1). I am marking the other answer as the correct one, since I wanted to know how to do it in Tortoise.
aip.cd.aish
2010-07-21 19:52:20
+2
A:
In Tortoise HG you can use the 'Determine and Mark outoing changesets' button (a green up-arrow with no horizontal bar) in TortoiseHG explorer.
This will compare the local changeset to the changesets on the currently selected server.
Ton
2010-07-21 19:29:26