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 965cf704b19d864d2837909db0a048f62266a92e..4794a1a3e65ded4e8abb21d107333fff03770031 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 e446f4812e28c733baed21e1d82098252ffbfefc..ce7857e5a93c212c609b2ef0bef56c3c42ed841c 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 9c46c352a8ce0cc41cfd59f07f866674aea41d9d..c277ea012ef88f381a942820067848b2079b0d73 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 894ca5e06f26002f7dc5f2a16b713ca13e45886e..2f4fe1217a3cd6d9d958130ca5e03c68b027abc1 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
 ------------------------------------------------