Autogenerated HTML docs for v1.4.2-rc4
authorJunio C Hamano <junio@hera.kernel.org>
Thu, 10 Aug 2006 00:18:08 +0000 (00:18 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Thu, 10 Aug 2006 00:18:08 +0000 (00:18 +0000)
git-status.html
git-status.txt
tutorial-2.html
tutorial-2.txt

index 965cf70..4794a1a 100644 (file)
@@ -272,7 +272,7 @@ git-status(1) Manual Page
 </div>\r
 <h2>SYNOPSIS</h2>\r
 <div class="sectionbody">\r
-<p><em>git-status</em></p>\r
+<p><em>git-status</em> &lt;options&gt;&#8230;</p>\r
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
@@ -285,6 +285,9 @@ running <em>git commit</em>.</p>
 <p>If there is no path that is different between the index file and\r
 the current HEAD commit, the command exits with non-zero\r
 status.</p>\r
+<p>The command takes the same set of options as <tt>git-commit</tt>; it\r
+shows what would be committed if the same options are given to\r
+<tt>git-commit</tt>.</p>\r
 </div>\r
 <h2>OUTPUT</h2>\r
 <div class="sectionbody">\r
@@ -306,7 +309,7 @@ Junio C Hamano &lt;junkio@cox.net&gt;.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 15-Jul-2006 01:38:14 UTC\r
+Last updated 10-Aug-2006 00:17:59 UTC\r
 </div>\r
 </div>\r
 </body>\r
index e446f48..ce7857e 100644 (file)
@@ -8,7 +8,7 @@ git-status - Show working tree status
 
 SYNOPSIS
 --------
-'git-status'
+'git-status' <options>...
 
 DESCRIPTION
 -----------
@@ -23,6 +23,10 @@ If there is no path that is different between the index file and
 the current HEAD commit, the command exits with non-zero
 status.
 
+The command takes the same set of options as `git-commit`; it
+shows what would be committed if the same options are given to
+`git-commit`.
+
 
 OUTPUT
 ------
index 9c46c35..c277ea0 100644 (file)
@@ -501,6 +501,7 @@ we can examine with ls-files:</p>
 $ git cat-file -t 513feba2\r
 blob\r
 $ git cat-file blob 513feba2\r
+hello world!\r
 hello world, again</tt></pre>\r
 </div></div>\r
 <p>So what our "git update-index" did was store a new blob and then put\r
@@ -634,7 +635,7 @@ example, creating a new commit.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 15-Jul-2006 01:38:26 UTC\r
+Last updated 10-Aug-2006 00:18:00 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 894ca5e..2f4fe12 100644 (file)
@@ -244,6 +244,7 @@ $ git ls-files --stage
 $ git cat-file -t 513feba2
 blob
 $ git cat-file blob 513feba2
+hello world!
 hello world, again
 ------------------------------------------------