[PATCH] The diff-raw format updates.
Update the diff-raw format as Linus and I discussed, except that it does not use sequence of underscore '_' letters to express nonexistence. All '0' mode is used for that purpose instead. The new diff-raw format can express rename/copy, and the earlier restriction that -M and -C _must_ be used with the patch format output is no longer necessary. The patch makes -M and -C flags independent of -p flag, so you need to say git-whatchanged -M -p to get the diff/patch format. Updated are both documentations and tests. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:

committed by
Linus Torvalds

parent
38c6f78059
commit
81e50eabf0
@ -32,14 +32,14 @@ void diff_pickaxe(const char *needle)
|
||||
|
||||
for (i = 0; i < q->nr; i++) {
|
||||
struct diff_filepair *p = q->queue[i];
|
||||
if (!p->one->file_valid) {
|
||||
if (!p->two->file_valid)
|
||||
if (!DIFF_FILE_VALID(p->one)) {
|
||||
if (!DIFF_FILE_VALID(p->two))
|
||||
continue; /* ignore nonsense */
|
||||
/* created */
|
||||
if (contains(p->two, needle, len))
|
||||
diff_queue(&outq, p->one, p->two);
|
||||
}
|
||||
else if (!p->two->file_valid) {
|
||||
else if (!DIFF_FILE_VALID(p->two)) {
|
||||
if (contains(p->one, needle, len))
|
||||
diff_queue(&outq, p->one, p->two);
|
||||
}
|
||||
|
Reference in New Issue
Block a user