5

I want to push my code to a repo, but before doing so I would like to see what changes the push will send.

ThinkingStiff
  • 64,767
  • 30
  • 146
  • 239
Daniel Williams
  • 8,912
  • 15
  • 68
  • 107
  • possible duplicate of [Using Mercurial, how can I see what changes have yet to be pushed?](http://stackoverflow.com/questions/790951/using-mercurial-how-can-i-see-what-changes-have-yet-to-be-pushed) – Martin Geisler Jan 07 '12 at 11:00

1 Answers1

9

This should display the changesets to be pushed.

hg outgoing

http://www.selenic.com/mercurial/hg.1.html#outgoing

To customize the output, check this answer: https://stackoverflow.com/a/3041751/62054

Community
  • 1
  • 1
Nick VanderPyle
  • 2,939
  • 3
  • 26
  • 33