Browse Source

repository: have the_repository use the_index

Have the index state which is stored in 'the_repository' be a pointer to
the in-core index 'the_index'.  This makes it easier to begin
transitioning more parts of the code base to operate on a 'struct
repository'.

Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Brandon Williams 8 years ago committed by Junio C Hamano
parent
commit
ba43964d47
  1. 4
      repository.c

4
repository.c

@ -4,7 +4,9 @@ @@ -4,7 +4,9 @@
#include "submodule-config.h"

/* The main repository */
static struct repository the_repo;
static struct repository the_repo = {
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, &the_index, 0, 0
};
struct repository *the_repository = &the_repo;

static char *git_path_from_env(const char *envvar, const char *git_dir,

Loading…
Cancel
Save