[PATCH] Make "git diff" work inside relative subdirectories
authorLinus Torvalds <torvalds@osdl.org>
Wed, 17 Aug 2005 01:06:34 +0000 (18:06 -0700)
committerJunio C Hamano <junkio@cox.net>
Wed, 17 Aug 2005 01:47:22 +0000 (18:47 -0700)
We always show the diff as an absolute path, but pathnames to diff are
taken relative to the current working directory (and if no pathnames are
given, the default ends up being all of the current working directory).

Note that "../xyz" also works, so you can do

cd linux/drivers/char
git diff ../block

and it will generate a diff of the linux/drivers/block changes.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
No differences found