aboutsummaryrefslogtreecommitdiff
path: root/gitolite-repo
diff options
context:
space:
mode:
Diffstat (limited to 'gitolite-repo')
-rwxr-xr-xgitolite-repo25
1 files changed, 0 insertions, 25 deletions
diff --git a/gitolite-repo b/gitolite-repo
deleted file mode 100755
index 0911d13..0000000
--- a/gitolite-repo
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-#
-# Format a new gitolite repository entry.
-#
-
-# Parameters
-BASENAME="`basename $0`"
-REPO="$1"
-OWNER="$2"
-
-# Syntax
-if [ -z "$3" ]; then
- echo "usage: $BASENAME <repo> <owner> <description>"
- exit 1
-fi
-
-# Get description
-shift 2
-DESC="$*"
-
-# Format entry
-echo "$REPO \"$OWNER\" = \"$DESC\""
-echo "repo $REPO"
-echo " R = @public"
-echo " RW = @$OWNER"