1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-09 05:36:10 +02:00

commit: allow prepare_commit_graft to handle arbitrary repositories

Move the global variable 'commit_graft_prepared' into the object
pool and convert the function prepare_commit_graft to work
an arbitrary repositories.

Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Stefan Beller 2018-05-17 15:51:53 -07:00 committed by Junio C Hamano
parent eee4502baa
commit 2f6c767fd4
2 changed files with 8 additions and 8 deletions

View File

@ -196,19 +196,17 @@ static int read_graft_file(struct repository *r, const char *graft_file)
return 0;
}
#define prepare_commit_graft(r) prepare_commit_graft_##r()
static void prepare_commit_graft_the_repository(void)
static void prepare_commit_graft(struct repository *r)
{
static int commit_graft_prepared;
char *graft_file;
if (commit_graft_prepared)
if (r->parsed_objects->commit_graft_prepared)
return;
graft_file = get_graft_file(the_repository);
read_graft_file(the_repository, graft_file);
graft_file = get_graft_file(r);
read_graft_file(r, graft_file);
/* make sure shallows are read */
is_repository_shallow(the_repository);
commit_graft_prepared = 1;
is_repository_shallow(r);
r->parsed_objects->commit_graft_prepared = 1;
}
struct commit_graft *lookup_commit_graft_the_repository(const struct object_id *oid)

View File

@ -20,6 +20,8 @@ struct parsed_object_pool {
int is_shallow;
struct stat_validity *shallow_stat;
char *alternate_shallow_file;
int commit_graft_prepared;
};
struct parsed_object_pool *parsed_object_pool_new(void);