summaryrefslogtreecommitdiffabout
path: root/shared.c
Side-by-side diff
Diffstat (limited to 'shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--shared.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/shared.c b/shared.c
index fd8b1e3..2c309f5 100644
--- a/shared.c
+++ b/shared.c
@@ -29,2 +29,3 @@ char *cgit_repo_group = NULL;
char *cgit_robots = "index, nofollow";
+char *cgit_clone_prefix = NULL;
@@ -202,2 +203,4 @@ void cgit_global_config_cb(const char *name, const char *value)
cgit_robots = xstrdup(value);
+ else if (!strcmp(name, "clone-prefix"))
+ cgit_clone_prefix = xstrdup(value);
else if (!strcmp(name, "repo.group"))
@@ -210,2 +213,4 @@ void cgit_global_config_cb(const char *name, const char *value)
cgit_repo->path = trim_end(value, '/');
+ else if (cgit_repo && !strcmp(name, "repo.clone-url"))
+ cgit_repo->clone_url = xstrdup(value);
else if (cgit_repo && !strcmp(name, "repo.desc"))