This is useful if you want to implement access rights by branchname. The update hook can check this variable and react accordingly. Signed-off-by: Heiko Voigt <hvoigt@xxxxxxxxxx> --- On Tue, Jun 02, 2009 at 09:32:40AM +0530, Sitaram Chamarty wrote: > I'd like it to set an additional env var which will contain "username" > so that hooks etc can get that info and use it as they they see fit. Here is a trivial patch. This is totally untested as I wanted to implement something similar but never had the time to work more on it. cheers Heiko gitosis/serve.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/gitosis/serve.py b/gitosis/serve.py index 867249e..0e2c4af 100644 --- a/gitosis/serve.py +++ b/gitosis/serve.py @@ -201,6 +201,7 @@ class Main(app.App): sys.exit(1) main_log.debug('Serving %s', newcmd) + os.putenv('USER', user) os.execvp('git', ['git', 'shell', '-c', newcmd]) main_log.error('Cannot execute git-shell.') sys.exit(1) -- 1.6.2.1.424.g0b27.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html