9 echo "usage: ikiwiki-makerepo svn|git srcdir repository" >&2
10 echo " ikiwiki-makerepo mercurial srcdir" >&2
14 if [ -z "$rcs" ] || [ -z "$srcdir" ]; then
18 if [ ! -d "$srcdir" ]; then
19 echo "srcdir $srcdir not found" >&2
23 if [ "$rcs" != mercurial ]; then
24 if [ -e "$repository" ]; then
25 echo "repository $repository already exists, aborting" >&2
28 repository="$(perl -e 'use Cwd q{abs_path}; print abs_path(shift)' $repository)"
29 if [ -z "$repository" ]; then
30 echo "internal error finding repository abs_path" >&2
35 echo "Importing $srcdir into $rcs"
39 if [ -e "$srcdir/.svn" ]; then
40 echo "$srcdir already seems to be a svn working copy" >&2
43 svnadmin create "$repository"
44 svn mkdir "file://$repository/trunk" -m "create trunk directory"
46 svn co "file://$repository/trunk" .
47 svn propset svn:ignore ".ikiwiki" .
49 svn commit -m "initial import"
50 echo "Directory $srcdir is now a checkout of $rcs repository $repository"
53 GIT_DIR="$repository" git --bare init --shared
56 echo /.ikiwiki > .gitignore
58 git commit -m "initial commit"
59 git remote add origin "$repository"
60 git config branch.master.merge refs/heads/master
62 echo "Directory $srcdir is now a clone of $rcs repository $repository"
67 echo .ikiwiki > .hgignore
69 hg commit -m "initial import"
70 echo "Directory $srcdir is now set up as a mercurial repository"
73 echo "Unsupported revision control system $rcs" >&2