#!/bin/sh
-# Upload NEW Git Project to master.
+# id-cvs-to-git.sh: Uploads new Git Project to public (bare)
+#
+# Usage:
+# id-cvs-to-git.sh source project description
+# source: is a GIT project source or 'CVS'
+# project: is the GIT project name (destination) and project source (If CVS)
+# description: description for the project
+#
+# Convert YAZ from CVS to Git and upload:
+# id-cvs-to-git.sh CVS yaz "Yet another Z39.50 toolkit"
+# Upload new project 'newproject' from repository ../newproject
+# ic-cvs-to-git.sh ../newproject newproject "My new project"
SRC=$1
P=$2
DESC="$3"