diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-11-25 10:10:10 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-25 10:23:13 -0800 |
commit | 3f061887c562b20d3ed3d1f764462cf986a1ad12 (patch) | |
tree | 636a0f9c085aac7ba539ef2ace03b3081481891a /commit.h | |
parent | 324ccbd6a09816af830b22b02bbeb06349141849 (diff) | |
download | git-3f061887c562b20d3ed3d1f764462cf986a1ad12.tar.gz |
add -i: Fix running from a subdirectory
This fixes the pathspec interactive_add() passes to the underlying
git-add--interactive helper. When the command was run from a
subdirectory, cmd_add() already has gone up to the toplevel of the work
tree, and the helper will be spawned from there. The pathspec given on
the command line from the user needs to be adjusted for this.
This adds "validate_pathspec()" function in the callchain, but it does
not validate yet. The function can be changed to barf if there are
unmatching pathspec given by the user, but that is not strictly
necessary.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -113,7 +113,7 @@ extern struct commit_list *get_shallow_commits(struct object_array *heads, int in_merge_bases(struct commit *, struct commit **, int); -extern int interactive_add(int argc, const char **argv); +extern int interactive_add(int argc, const char **argv, const char *prefix); extern int rerere(void); static inline int single_parent(struct commit *commit) |