diff options
author | Linus Torvalds <torvalds@osdl.org> | 2006-07-28 21:21:48 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-28 22:03:06 -0700 |
commit | db6296a566eb1a8007a84330a911b38055720743 (patch) | |
tree | b37108730d738e64c27311785598a55746c50081 /revision.h | |
parent | 818f477c40fee62ab8ea5b493c51bb357f38957c (diff) | |
download | git-db6296a566eb1a8007a84330a911b38055720743.tar.gz |
Call setup_git_directory() early
Any git command that expects to work in a subdirectory of a project, and
that reads the git config files (which is just about all of them) needs to
make sure that it does the "setup_git_directory()" call before it tries to
read the config file.
This means, among other things, that we need to move the call out of
"init_revisions()", and into the caller.
This does the mostly trivial conversion to do that.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/revision.h b/revision.h index e23ec8f45a..0c3b8d9905 100644 --- a/revision.h +++ b/revision.h @@ -87,7 +87,7 @@ struct rev_info { extern int rev_same_tree_as_empty(struct rev_info *, struct tree *t1); extern int rev_compare_tree(struct rev_info *, struct tree *t1, struct tree *t2); -extern void init_revisions(struct rev_info *revs); +extern void init_revisions(struct rev_info *revs, const char *prefix); extern int setup_revisions(int argc, const char **argv, struct rev_info *revs, const char *def); extern void prepare_revision_walk(struct rev_info *revs); extern struct commit *get_revision(struct rev_info *revs); |