sipb-www
/
ikiwiki.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
web commit by rdennis
[ikiwiki.git]
/
ikiwiki-makerepo
diff --git
a/ikiwiki-makerepo
b/ikiwiki-makerepo
index a6999cb4a32288ef53910c664921661d981306d8..dd23b4638a88b76367e638719d4e58247b8edfed 100755
(executable)
--- a/
ikiwiki-makerepo
+++ b/
ikiwiki-makerepo
@@
-7,7
+7,7
@@
repository="$3"
usage () {
echo "usage: ikiwiki-makerepo svn|git srcdir repository" >&2
usage () {
echo "usage: ikiwiki-makerepo svn|git srcdir repository" >&2
- echo " ikiwiki-makerepo mercurial srcdir" >&2
+ echo " ikiwiki-makerepo
bzr|
mercurial srcdir" >&2
exit 1
}
exit 1
}
@@
-20,7
+20,7
@@
if [ ! -d "$srcdir" ]; then
exit 1
fi
exit 1
fi
-if [ "$rcs" != mercurial ]; then
+if [ "$rcs" != mercurial ]
&& [ "$rcs" != bzr ]
; then
if [ -e "$repository" ]; then
echo "repository $repository already exists, aborting" >&2
exit 1
if [ -e "$repository" ]; then
echo "repository $repository already exists, aborting" >&2
exit 1
@@
-50,7
+50,11
@@
svn)
echo "Directory $srcdir is now a checkout of $rcs repository $repository"
;;
git)
echo "Directory $srcdir is now a checkout of $rcs repository $repository"
;;
git)
- GIT_DIR="$repository" git --bare init --shared
+ # There are better ways to do this, but this works with older
+ # versions of git.)
+ mkdir -p "$repository"
+ (cd "$repository" && git --bare init --shared)
+
cd "$srcdir"
git init
echo /.ikiwiki > .gitignore
cd "$srcdir"
git init
echo /.ikiwiki > .gitignore
@@
-69,6
+73,14
@@
mercurial)
hg commit -m "initial import"
echo "Directory $srcdir is now set up as a mercurial repository"
;;
hg commit -m "initial import"
echo "Directory $srcdir is now set up as a mercurial repository"
;;
+bzr)
+ bzr init "$srcdir"
+ cd "$srcdir"
+ echo .ikiwiki > .bzrignore
+ bzr add * .bzrignore
+ bzr commit -m "initial import"
+ echo "Directory $srcdir is now set up as a bzr repository"
+;;
*)
echo "Unsupported revision control system $rcs" >&2
usage
*)
echo "Unsupported revision control system $rcs" >&2
usage