On Wed, Jul 13, 2011 at 15:42, Armin Rigo <ar...@tunes.org> wrote:
> ...and both are different from what I find to be the *really* useful
> information, which is: "which checkins are contained in B but not in
> A"?  For that you have to use -r 'ancestors(B) and not ancestors(A)',

Not sure to understand, with Git you know easily new commits since last fetch :
git log origin/master..master
Same command as :
git log master ^origin/master (a and not b).

I think it's the same thing with hg (minus inclusion/exclusion
limits). I'm wrong?



-- 
Sebastien Douche <sdou...@gmail.com>
Twitter : @sdouche
_______________________________________________
pypy-dev mailing list
pypy-dev@python.org
http://mail.python.org/mailman/listinfo/pypy-dev

Reply via email to