Remove the assert in CommitData.parse() function
[stgit] / INSTALL
diff --git a/INSTALL b/INSTALL
index f99c8f3..d728441 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -1,11 +1,20 @@
 For basic installation:
 
-       python setup.py install
+       $ make all doc ;# as yourself
+       $ make install install-doc ;# as yourself
 
 By default, the above command installs StGIT in the
 $HOME/{bin,lib,share} directories. For a different location, use the
---prefix option.
+prefix option.
 
-For more information:
+       $ make prefix=/usr all doc #; as yourself
+       # make prefix=/usr install install-doc #; as root
 
-       http://docs.python.org/inst/inst.html
+Issues of note:
+
+- StGit requires git version 1.5.6 or later. (Specifically, it needs a
+  git that includes commit a8128ed6: "git-cat-file: Add --batch option".)
+
+- To build and install the documentation, you need to have the
+  asciidoc/xmlto toolchain.  The default build target ("make all")
+  does _not_ build them.