Issue360

Title "hg diff b a" should print "b"s diffs first
Priority wish Status unread
Superseder Nosy List ThomasAH, meyering, tonfa
Assigned To Topics diff

Created on 2006-09-06.16:38:09 by meyering, last changed 2007-06-22.22:10:31 by mpm.

Messages
msg1871 (view) Author: meyering Date: 2006-09-06.16:38:07
A command like "hg diff b a" should print the diffs in the order specified.
Instead, it sorts the arguments, and prints the diffs in that order.

Running these commands:

    mkdir d && cd d
    touch a b
    hg init
    hg add .
    hg ci -m. .
    echo a > a; echo b > b
    hg diff b a |grep diff

I get this output:

    diff -r bd5f22546a9dfb07ffa0cb9c368ba16f00cab6cc a
    diff -r bd5f22546a9dfb07ffa0cb9c368ba16f00cab6cc b

I expected to see "b"s diffs before those of "a".
History
Date User Action Args
2007-06-22 22:10:31mpmsetpriority: bug -> wish
nosy: ThomasAH, tonfa, meyering
2006-09-26 17:46:10tonfasetnosy: + tonfa
2006-09-07 12:37:24ThomasAHsetnosy: + ThomasAH
2006-09-06 16:38:09meyeringcreate