Daniel
Daniel

Reputation: 95

Mercurial: Is there a way to make a diff compared to local repository, not remote?

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

Answers (1)

krtek
krtek

Reputation: 26597

try :

hg outgoing --patch

If you want more details or information :

hg outgoing --help

Upvotes: 1

Related Questions