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 =>