Adam Rackis
Adam Rackis

Reputation: 83358

TortoiseHg - display commits that are not pushed

It's happened more than a few times that I'll commit a bit of code, then forget to actually push the code over to our remote repository (until my boss tells me that XYZ still doesn't work, and I feel silly).

Is there any way to have Tortoise display committed code that hasn't been pushed differently? Ideally I'd love it if there was a way to get such changesets to show with a gray background or something.

So in the below screenshot, if revision 1270 had not been pushed, have that show up shaded, or marked somehow.

enter image description here

Is this possible?

Upvotes: 1

Views: 187

Answers (2)

jamessan
jamessan

Reputation: 42647

You can use the sync toolbar to view what "outgoing" changesets you have.

Upvotes: 1

Mike Brant
Mike Brant

Reputation: 71384

The code that has been pushed will have "public" as its phase. The code that has not been pushed will be shown as "draft".

Upvotes: 4

Related Questions