From 4dbd562b8e5bf8d44a7a19b8e248b2b0e0295eb2 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 8 Jan 2015 19:28:34 +0100 Subject: Use custom templates for Git repositories Do not waste disk space by copying dozens of unneeded sample hooks. Use a custom template directory that only includes the git-update hook. Signed-off-by: Lukas Fleischer --- scripts/git-integration/init-repos.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'scripts/git-integration/init-repos.py') diff --git a/scripts/git-integration/init-repos.py b/scripts/git-integration/init-repos.py index 62c51b1..5c4fcfe 100755 --- a/scripts/git-integration/init-repos.py +++ b/scripts/git-integration/init-repos.py @@ -19,7 +19,7 @@ aur_db_socket = config.get('database', 'socket') repo_base_path = config.get('serve', 'repo-base') repo_regex = config.get('serve', 'repo-regex') -git_update_hook = config.get('serve', 'git-update-hook') +template_path = config.get('serve', 'template-path') def die(msg): sys.stderr.write("%s\n" % (msg)) @@ -45,7 +45,6 @@ for repo in repos: print("[%s/%d] %s" % (str(i).rjust(len(str(n))), n, repo)) repo_path = repo_base_path + '/' + repo + '.git/' - pygit2.init_repository(repo_path, True) - os.symlink(git_update_hook, repo_path + 'hooks/update') + pygit2.init_repository(repo_path, True, 48, template_path=template_path) i += 1 -- cgit v1.2.3-70-g09d2