[aur-dev] [PATCH] git-serve: Support `git {receive,upload}-pack`

Lukas Fleischer lfleischer at archlinux.org
Sat Oct 1 19:56:51 UTC 2016


Add support for the `git receive-pack` and `git upload-pack` commands
which are aliases for git-receive-pack and git-upload-pack,
respectively.

Signed-off-by: Lukas Fleischer <lfleischer at archlinux.org>
---
 git-interface/git-serve.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/git-interface/git-serve.py b/git-interface/git-serve.py
index 5f3b26d..ebfef94 100755
--- a/git-interface/git-serve.py
+++ b/git-interface/git-serve.py
@@ -305,6 +305,10 @@ def main():
         if remote_addr not in maintenance_exc:
             die("The AUR is down due to maintenance. We will be back soon.")
 
+    if action == 'git' and cmdargv[1] in ('upload-pack', 'receive-pack'):
+        action = action + '-' + cmdargv[1]
+        del cmdargv[1]
+
     if action == 'git-upload-pack' or action == 'git-receive-pack':
         if len(cmdargv) < 2:
             die_with_help("{:s}: missing path".format(action))
-- 
2.10.0


More information about the aur-dev mailing list