summaryrefslogtreecommitdiff
path: root/web/init-cgit
diff options
context:
space:
mode:
Diffstat (limited to 'web/init-cgit')
-rwxr-xr-xweb/init-cgit12
1 files changed, 9 insertions, 3 deletions
diff --git a/web/init-cgit b/web/init-cgit
index 8e730c1..994b407 100755
--- a/web/init-cgit
+++ b/web/init-cgit
@@ -5,6 +5,7 @@
# It will add a remote `cgit` pointing to `git@example.com:/srv/git/repo.git.
# $1 = name of repo - I guess we could get this from the cwd maybe?.
# $2 = description to override repo/description with.
+# $3 = if necessary, a branch to use if not master.
if [ "$1" = "-h" ] || [ "$1" = "--help" ] ; then
echo "init-cgit NAME DESCRIPTION"
@@ -13,9 +14,9 @@ if [ "$1" = "-h" ] || [ "$1" = "--help" ] ; then
exit 0
fi
-
GIT_USER="git"
SRV_GIT_PATH="/srv/git"
+REMOTE_NAME="cgit"
if [ -z "$BARE_WEBSITE_URL" ] ; then
echo "BARE_WEBSITE_URL must be set"
@@ -30,5 +31,10 @@ if [ ! -z "$2" ] ; then
fi
# Now create `cgit` remote in local repo.
-git remote add cgit "$GIT_USER@$BARE_WEBSITE_URL:$SRV_GIT_PATH/$1"
-git push cgit master
+git remote add "$REMOTE_NAME" "$GIT_USER@$BARE_WEBSITE_URL:$SRV_GIT_PATH/$1"
+
+if [ -z "$3" ] ; then
+ BRANCH=master
+else
+ BRANCH="$3"
+git push "$REMOTE_NAME" "$BRANCH"