Reputation: 95
I've comitted several changes in my mercurial repository. And now I want to see the difference between my local copy and the original remote repository. So it would be same if I collected diffs of all my commits by hand, but they're too split up.
Is there any way around this?
Upvotes: 2
Views: 152
Reputation: 26597
try :
hg outgoing --patch
If you want more details or information :
hg outgoing --help
Upvotes: 1