diff options
author | Stefan Beller <sbeller@google.com> | 2018-05-17 15:51:51 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-05-18 08:13:10 +0900 |
commit | 102de880d24fe66a8916e7c984e5bf8db6be047c (patch) | |
tree | 0368ad2a280ca777b8edf01e77fb0ed1258c8c32 /repository.h | |
parent | 0437a2e365f3b9156097d029ca6f91cbb8bffd5e (diff) | |
download | git-102de880d24fe66a8916e7c984e5bf8db6be047c.tar.gz |
path.c: migrate global git_path_* to take a repository argument
Migrate all git_path_* functions that are defined in path.c to take a
repository argument. Unlike other patches in this series, do not use the
#define trick, as we rewrite the whole function, which is rather small.
This doesn't migrate all the functions, as other builtins have their own
local path functions defined using GIT_PATH_FUNC. So keep that macro
around to serve the other locations.
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'repository.h')
-rw-r--r-- | repository.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/repository.h b/repository.h index 6d19981990..83f9ef1510 100644 --- a/repository.h +++ b/repository.h @@ -39,6 +39,11 @@ struct repository { struct ref_store *refs; /* + * Contains path to often used file names. + */ + struct path_cache cached_paths; + + /* * Path to the repository's graft file. * Cannot be NULL after initialization. */ |