diff options
author | Brandon Williams <bmwill@google.com> | 2016-12-16 11:03:18 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-12-22 11:47:33 -0800 |
commit | 9ebf689aad72bfc091da21e1d73a05308f1ace85 (patch) | |
tree | a6977a330a910da0e7760f96a9b1e70d6e3e9f60 /submodule-config.c | |
parent | f9f42560e2911a5eef9a3d463a63cfd48d54dd07 (diff) | |
download | git-9ebf689aad72bfc091da21e1d73a05308f1ace85.tar.gz |
submodules: load gitmodules file from commit sha1
teach submodules to load a '.gitmodules' file from a commit sha1. This
enables the population of the submodule_cache to be based on the state
of the '.gitmodules' file from a particular commit.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'submodule-config.c')
-rw-r--r-- | submodule-config.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/submodule-config.c b/submodule-config.c index 098085be69..8b9a2ef288 100644 --- a/submodule-config.c +++ b/submodule-config.c @@ -379,9 +379,9 @@ static int parse_config(const char *var, const char *value, void *data) return ret; } -static int gitmodule_sha1_from_commit(const unsigned char *commit_sha1, - unsigned char *gitmodules_sha1, - struct strbuf *rev) +int gitmodule_sha1_from_commit(const unsigned char *commit_sha1, + unsigned char *gitmodules_sha1, + struct strbuf *rev) { int ret = 0; |