d3b2dda5df
When someone adds a repo-specific hook to their repo, then create a 'fork' via the fork ADC, this repo-specific hook also get carried across, but should not.
46 lines
1.3 KiB
Bash
Executable file
46 lines
1.3 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
. $(dirname $0)/adc.common-functions
|
|
|
|
[ -z "$GL_RC" ] && die "ENV GL_RC not set"
|
|
[ -z "$2" ] && die "Usage: fork source_repo target_repo"
|
|
|
|
# all the can_* functions set $repo
|
|
can_read $1 || die "no read permissions on $repo"
|
|
from=$repo
|
|
|
|
can_create $2 || die "no create permissions on $repo"
|
|
to=$repo
|
|
|
|
# clone $from to $to
|
|
git clone --bare -l $GL_REPO_BASE_ABS/$from.git $GL_REPO_BASE_ABS/$to.git
|
|
[ $? -ne 0 ] && exit 1
|
|
|
|
echo "$from forked to $to"
|
|
|
|
# fix up creator, gitweb owner, and hooks
|
|
cd $GL_REPO_BASE_ABS/$to.git
|
|
echo $GL_USER > gl-creater
|
|
git config gitweb.owner "$GL_USER"
|
|
( $GL_BINDIR/gl-query-rc GL_WILDREPOS_DEFPERMS ) |
|
|
SSH_ORIGINAL_COMMAND="setperms $to" $GL_BINDIR/gl-auth-command $GL_USER
|
|
|
|
# symlink hooks
|
|
shopt -s nullglob
|
|
# the order is important; "package" hooks must override same-named "user" hooks
|
|
for i in `$GL_BINDIR/gl-query-rc GL_ADMINDIR`/hooks/common/* \
|
|
`$GL_BINDIR/gl-query-rc GL_PACKAGE_HOOKS `/common/*
|
|
do
|
|
ln -sf $i $GL_REPO_BASE_ABS/$to.git/hooks
|
|
done
|
|
|
|
if [ -n "$GL_WILDREPOS_DEFPERMS" ]; then
|
|
echo "$GL_WILDREPOS_DEFPERMS" > gl-perms
|
|
fi
|
|
|
|
echo "$from" > gl-forked-from
|
|
|
|
# run gitolite's post-init hook if you can (hook code expects GL_REPO to be set)
|
|
export GL_REPO; GL_REPO="$to"
|
|
[ -x hooks/gl-post-init ] && hooks/gl-post-init
|