diff options
author | Linus Torvalds <torvalds@osdl.org> | 2005-08-16 18:06:34 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-08-16 18:47:22 -0700 |
commit | d288a70030eaa5c205a72b4548635e17f8e523c0 (patch) | |
tree | e446e859256bd90a9eefd1cb2406707ea5b9d555 /cache.h | |
parent | [PATCH] Add a bit more links to the commands to the main git(7) page. (diff) | |
download | tgif-d288a70030eaa5c205a72b4548635e17f8e523c0.tar.xz |
[PATCH] Make "git diff" work inside relative subdirectories
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>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -140,6 +140,9 @@ extern char *get_graft_file(void); #define ALTERNATE_DB_ENVIRONMENT "GIT_ALTERNATE_OBJECT_DIRECTORIES" +extern const char **get_pathspec(const char *prefix, char **pathspec); +extern const char *setup_git_directory(void); + #define alloc_nr(x) (((x)+16)*3/2) /* Initialize and use the cache information */ |