Autogenerated HTML docs for v1.5.3-rc4-16-ga76c
authorJunio C Hamano <junio@hera.kernel.org>
Mon, 6 Aug 2007 06:42:24 +0000 (06:42 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Mon, 6 Aug 2007 06:42:24 +0000 (06:42 +0000)
git-commit.html
git-commit.txt

index 500db14ab6d5cb3be6cd099ed0cd1d75d6cf173b..514f3d1baf88c44dd588055a37729b38d3c970d5 100644 (file)
@@ -280,37 +280,33 @@ git-commit(1) Manual Page
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
-<p>Use <em>git commit</em> when you want to record your changes into the repository\r
-along with a log message describing what the commit is about. All changes\r
-to be committed must be explicitly identified using one of the following\r
-methods:</p>\r
+<p>Use <em>git commit</em> to store the current contents of the index in a new\r
+commit along with a log message describing the changes you have made.</p>\r
+<p>The content to be added can be specified in several ways:\r
+1. by using <a href="git-add.html">git-add(1)</a> to incrementally "add" changes to the\r
+   index before using the <em>commit</em> command (Note: even modified\r
+   files must be "added");</p>\r
 <ol>\r
 <li>\r
 <p>\r
-by using <a href="git-add.html">git-add(1)</a> to incrementally "add" changes to the\r
-   next commit before using the <em>commit</em> command (Note: even modified\r
-   files must be "added");\r
+by using <a href="git-rm.html">git-rm(1)</a> to remove files from the working tree\r
+   and the index, again before using the <em>commit</em> command;\r
 </p>\r
 </li>\r
 <li>\r
 <p>\r
-by using <a href="git-rm.html">git-rm(1)</a> to identify content removal for the next\r
-   commit, again before using the <em>commit</em> command;\r
+by listing files as arguments to the <em>commit</em> command, in which\r
+   case the commit will ignore changes staged in the index, and instead\r
+   record the current content of the listed files;\r
 </p>\r
 </li>\r
 <li>\r
 <p>\r
-by directly listing files containing changes to be committed as arguments\r
-   to the <em>commit</em> command, in which cases only those files alone will be\r
-   considered for the commit;\r
-</p>\r
-</li>\r
-<li>\r
-<p>\r
-by using the -a switch with the <em>commit</em> command to automatically "add"\r
-   changes from all known files i.e. files that have already been committed\r
-   before, and to automatically "rm" files that have been\r
-   removed from the working tree, and perform the actual commit.\r
+by using the -a switch with the <em>commit</em> command to automatically\r
+   "add" changes from all known files (i.e. all files that are already\r
+   listed in the index) and to automatically "rm" files in the index\r
+   that have been removed from the working tree, and then perform the\r
+   actual commit;\r
 </p>\r
 </li>\r
 <li>\r
@@ -701,7 +697,7 @@ Junio C Hamano &lt;junkio@cox.net&gt;</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 27-Jul-2007 07:25:18 UTC\r
+Last updated 06-Aug-2007 06:42:07 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 627994eb9727379183c40dde786b80c53d3e2af3..63599d382827e69341983a80d64d53dd18e9ac4e 100644 (file)
@@ -15,26 +15,26 @@ SYNOPSIS
 
 DESCRIPTION
 -----------
-Use 'git commit' when you want to record your changes into the repository
-along with a log message describing what the commit is about. All changes
-to be committed must be explicitly identified using one of the following
-methods:
+Use 'git commit' to store the current contents of the index in a new
+commit along with a log message describing the changes you have made.
 
+The content to be added can be specified in several ways:
 1. by using gitlink:git-add[1] to incrementally "add" changes to the
-   next commit before using the 'commit' command (Note: even modified
+   index before using the 'commit' command (Note: even modified
    files must be "added");
 
-2. by using gitlink:git-rm[1] to identify content removal for the next
-   commit, again before using the 'commit' command;
+2. by using gitlink:git-rm[1] to remove files from the working tree
+   and the index, again before using the 'commit' command;
 
-3. by directly listing files containing changes to be committed as arguments
-   to the 'commit' command, in which cases only those files alone will be
-   considered for the commit;
+3. by listing files as arguments to the 'commit' command, in which
+   case the commit will ignore changes staged in the index, and instead
+   record the current content of the listed files;
 
-4. by using the -a switch with the 'commit' command to automatically "add"
-   changes from all known files i.e. files that have already been committed
-   before, and to automatically "rm" files that have been
-   removed from the working tree, and perform the actual commit.
+4. by using the -a switch with the 'commit' command to automatically
+   "add" changes from all known files (i.e. all files that are already
+   listed in the index) and to automatically "rm" files in the index
+   that have been removed from the working tree, and then perform the
+   actual commit;
 
 5. by using the --interactive switch with the 'commit' command to decide one
    by one which files should be part of the commit, before finalizing the