usage () {
echo "usage: ikiwiki-makerepo svn|git|monotone|darcs srcdir repository" >&2
- echo " ikiwiki-makerepo bzr|mercurial|darcs srcdir" >&2
+ echo " ikiwiki-makerepo bzr|mercurial srcdir" >&2
exit 1
}
exit 1
fi
-if [ "$rcs" != mercurial ] && [ "$rcs" != bzr ] && [ "$rcs" != darcs ]; then
+if [ "$rcs" != mercurial ] && [ "$rcs" != bzr ]; then
if [ -z "$repository" ]; then
echo "you need to specify both a srcdir and a repository for $rcs" >&2
usage
hg init "$srcdir"
cd "$srcdir"
echo .ikiwiki > .hgignore
- hg add * .hgignore
+ hg add
hg commit -m "initial import"
echo "Directory $srcdir is now set up as a mercurial repository"
;;
bzr init "$srcdir"
cd "$srcdir"
echo .ikiwiki > .bzrignore
- bzr add * .bzrignore
+ bzr add
bzr commit -m "initial import"
echo "Directory $srcdir is now set up as a bzr repository"
;;
exit 1
fi
- # if only one arg is given, we turn the given srcdir into the darcs
- # master repo with a hidden srcdir inside its _darcs directory.
- if [ -z "$repository" ]; then
- echo "Turning $srcdir into master repo."
- repository="$srcdir"
- srcdir="$srcdir/_darcs/srcdir"
- echo "The new srcdir is $srcdir - adjust ikiwiki.setup accordingly!"
- fi
-
mkdir -p "$repository"
cd "$repository"
darcs initialize