diff options
author | Richard Maw <richard.maw@gmail.com> | 2016-06-25 19:51:36 +0000 |
---|---|---|
committer | Richard Maw <richard.maw@gmail.com> | 2016-07-13 19:09:37 +0000 |
commit | a76460c5ed75ca950c18373990a2135c895daad4 (patch) | |
tree | cfcffa9f36a4f2f11069e5191d9ad978480087dc /cgit.c | |
parent | 21637776234574c4bbedf45af7f59663b46458bd (diff) | |
download | cgit-a76460c5ed75ca950c18373990a2135c895daad4.tar cgit-a76460c5ed75ca950c18373990a2135c895daad4.tar.gz cgit-a76460c5ed75ca950c18373990a2135c895daad4.zip |
Set GIT_NAMESPACE when repo.namespace is provided
This causes any namespace-aware code
to only handle refs under that namespace.
Currently this doesn't do much
as the only namespace aware code is in recieve-pack and upload-pack,
which are not handled by CGit.
Signed-off-by: Richard Maw <richard.maw@gmail.com>
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -566,6 +566,11 @@ static int prepare_repo_cmd(void) /* The path to the git repository. */ setenv("GIT_DIR", ctx.repo->path, 1); + /* Set the namespace in the environment, + * so it gets loaded on the first get_git_namespace() */ + if (ctx.repo->namespace) + setenv("GIT_NAMESPACE", ctx.repo->namespace, 1); + /* Do not look in /etc/ for gitconfig and gitattributes. */ setenv("GIT_CONFIG_NOSYSTEM", "1", 1); setenv("GIT_ATTR_NOSYSTEM", "1", 1); |