5b3dcb3757
- get_rights_and_owner normalises its arg1 by stripping .git if supplied, then sets the variable "repo" to the result as a side effect - new "help" adc with some default text but main purpose is to allow site local help text - other adc's refer to 'help' adc when appropriate - 'undelete' renamed to 'restore'; that's what the KDE "trashcan" program calls that operation - minor typo in sample script in documentation - main adc doc points to contrib/adc/repo-deletion.README now
17 lines
393 B
Bash
Executable file
17 lines
393 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. $(dirname $0)/adc.common-functions
|
|
|
|
repo=$1
|
|
[ -z "$1" ] && die need a repo name
|
|
|
|
owner=
|
|
owner=`cat $TRASH_CAN/$repo/gl-creater 2>/dev/null`
|
|
[ "$owner" = "$GL_USER" ] || die "$repo is not yours!"
|
|
|
|
cd $TRASH_CAN
|
|
realrepo=`dirname $repo`
|
|
[ -d $GL_REPO_BASE_ABS/$realrepo.git ] && die $realrepo already exists
|
|
mv $repo $GL_REPO_BASE_ABS/$realrepo.git
|
|
echo $repo restored to $realrepo
|