]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/commitdiff
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
authorJoey Hess <joey@gnu.kitenet.net>
Fri, 2 Jan 2009 19:16:13 +0000 (14:16 -0500)
committerJoey Hess <joey@gnu.kitenet.net>
Fri, 2 Jan 2009 19:16:13 +0000 (14:16 -0500)
debian/changelog
doc/ikiwiki-makerepo.mdwn
ikiwiki-makerepo

index 07062b04a72382c0a0b6fc2dbfb95e25efd209bf..26e22aa9416e9253d9e9f2aace12b0b4015a9971 100644 (file)
@@ -1,3 +1,10 @@
+ikiwiki (3.01) UNRELEASED; urgency=low
+
+  * ikiwiki-makerepo: Fix injecting of empty mercurial and bzr repositories.
+    Closes: #510518
+
+ -- Joey Hess <joeyh@debian.org>  Fri, 02 Jan 2009 14:12:16 -0500
+
 ikiwiki (3.00) unstable; urgency=low
 
   * Remove support for GlobLists.
index dcebbb96ac8a42db3c1a3670681c43daf32d8db3..9c532f201ab25e7fb36661220191c16b063c3a2e 100644 (file)
@@ -6,19 +6,20 @@ ikiwiki-makerepo - check an ikiwiki srcdir into revision control
 
 ikiwiki-makerepo svn|git|monotone srcdir repository
 
-ikiwiki-makerepo mercurial srcdir
+ikiwiki-makerepo bzr|mercurial srcdir
 
 # DESCRIPTION
 
 `ikiwiki-makerepo` injects a `srcdir` directory, containing an ikiwiki wiki,
-into a `repository` that it creates. The repository can be a svn, git, or
-mercurial repository.
+into a `repository` that it creates. The repository can be created using
+any of a variety of revision control systems.
 
-Note that for mercurial, the srcdir is converted into a mercurial
-repository. There is no need to have a separate repository with mercurial.
+Note that for mercurial and bzr, the srcdir is converted into a
+repository. There is no need to have a separate repository with mercurial
+or bzr.
 
-Note that for monotone, you are assumed to already have run "mtn genkey" to generate
-key.
+Note that for monotone, you are assumed to already have run "mtn genkey"
+to generate a key.
 
 # AUTHOR
 
index c3d835c308436a5a50d158420ba827c80b95e8af..32a9f864697795215fd0ebfe97353a96f587f744 100755 (executable)
@@ -75,7 +75,7 @@ mercurial)
        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"
 ;;
@@ -83,7 +83,7 @@ bzr)
        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"
 ;;