From 8df28a02dbf80c2a920305ba9904e707f5ca1d77 Mon Sep 17 00:00:00 2001 From: Sitaram Chamarty Date: Wed, 4 Apr 2012 04:58:50 +0530 Subject: [PATCH] (minor) comments and clarifications in default rc --- src/Gitolite/Rc.pm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/Gitolite/Rc.pm b/src/Gitolite/Rc.pm index 5654af1..c7390eb 100644 --- a/src/Gitolite/Rc.pm +++ b/src/Gitolite/Rc.pm @@ -313,7 +313,7 @@ __DATA__ ], # comment out or uncomment as needed - # these will run in sequence at the start, before a git operation has started + # these will run in sequence just before the actual git command is invoked PRE_GIT => [ # if you use this, make this the first item in the list @@ -332,7 +332,7 @@ __DATA__ ], # comment out or uncomment as needed - # these will run in sequence at the end, after a git operation has ended + # these will run in sequence after the git command returns POST_GIT => [ # if you use this, make this the last item in the list @@ -340,6 +340,12 @@ __DATA__ # 'Mirroring::post_git', ], + # comment out or uncomment as needed + # these will run in sequence before a new wild repo is created + PRE_CREATE => + [ + ], + # comment out or uncomment as needed # these will run in sequence after a new wild repo is created POST_CREATE =>