Merge branch 'sb/object-store-grafts' into sb/object-store-lookup
* sb/object-store-grafts: commit: allow lookup_commit_graft to handle arbitrary repositories commit: allow prepare_commit_graft to handle arbitrary repositories shallow: migrate shallow information into the object parser path.c: migrate global git_path_* to take a repository argument cache: convert get_graft_file to handle arbitrary repositories commit: convert read_graft_file to handle arbitrary repositories commit: convert register_commit_graft to handle arbitrary repositories commit: convert commit_graft_pos() to handle arbitrary repositories shallow: add repository argument to is_repository_shallow shallow: add repository argument to check_shallow_file_for_update shallow: add repository argument to register_shallow shallow: add repository argument to set_alternate_shallow_file commit: add repository argument to lookup_commit_graft commit: add repository argument to prepare_commit_graft commit: add repository argument to read_graft_file commit: add repository argument to register_commit_graft commit: add repository argument to commit_graft_pos object: move grafts to object parser object-store: move object access functions to object-store.h
This commit is contained in:
4
object.c
4
object.c
@ -1,6 +1,7 @@
|
||||
#include "cache.h"
|
||||
#include "object.h"
|
||||
#include "replace-object.h"
|
||||
#include "object-store.h"
|
||||
#include "blob.h"
|
||||
#include "tree.h"
|
||||
#include "commit.h"
|
||||
@ -463,6 +464,9 @@ struct parsed_object_pool *parsed_object_pool_new(void)
|
||||
o->tag_state = allocate_alloc_state();
|
||||
o->object_state = allocate_alloc_state();
|
||||
|
||||
o->is_shallow = -1;
|
||||
o->shallow_stat = xcalloc(1, sizeof(*o->shallow_stat));
|
||||
|
||||
return o;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user