On Tue, Mar 8, 2011 at 6:30 PM, Éric Araujo <mer...@netwok.org> wrote:

> What’s the command you use with git?  Maybe someone will find the

Mercurial one.
>

Something like the following, assuming we're both working on branch "master"
to begin with.

git fetch their-repository master:experimental-branch
git diff master...experimental-branch

The idea is to pull their remote branch but not merge it, which will create
multiple heads locally.  Then find the common ancestor of my regular local
head and the new head, and diff the ancestor with the new head.

-- 
Daniel Stutzbach
_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to