Allan Wind <allan_wind@xxxxxxxxxxxxxxxxx> wrote: > Between tag1 and tag2 I am deleting a number of binary files, and I was > surprised seeing the binaries being added to the diff when said files > are to be deleted: > > git diff --binary tag1 tag2 > /tmp/diff && ls -l /tmp/diff > -rw-r--r-- 1 allan users 555135993 2008-06-21 22:37 /tmp/diff > > git diff tag1 tag2 > /tmp/diff2 && ls -l /tmp/diff2 > -rw-r--r-- 1 allan users 12862 2008-06-21 23:33 /tmp/diff2 In order to apply the diff in reverse we need the old binary data in the diff output. So that's why its larger. In other words lets say you actually wanted to go back to tag1, after having tag2 for a while: $ git checkout tag2 $ git diff --binary tag1 tag2 | git apply --index -R without the binary data in the diff, apply cannot run in the reverse direction to restore back to tag1. :) -- Shawn. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html