Autogenerated HTML docs for v1.5.0-rc1-gde38
authorJunio C Hamano <junio@hera.kernel.org>
Wed, 17 Jan 2007 23:27:45 +0000 (23:27 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Wed, 17 Jan 2007 23:27:45 +0000 (23:27 +0000)
16 files changed:
git-applypatch.html
git-applypatch.txt
git-blame.html
git-blame.txt
git-commit-tree.html
git-commit-tree.txt
git-fetch-pack.html
git-fetch-pack.txt
git-mailinfo.html
git-mailinfo.txt
git-parse-remote.html
git-parse-remote.txt
git-resolve.html
git-resolve.txt
git-send-pack.html
git-send-pack.txt

index 54693ae27b43d0dcdc8abf3c7ac6d5ce52f9d08b..1574b3481880dcec5ceeb0a06ed1df2cd4f8cf23 100644 (file)
@@ -276,6 +276,8 @@ git-applypatch(1) Manual Page
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
+<p>This is usually not what an end user wants to run directly.  See\r
+<a href="git-am.html">git-am(1)</a> instead.</p>\r
 <p>Takes three files &lt;msg&gt;, &lt;patch&gt;, and &lt;info&gt; prepared from an\r
 e-mail message by <em>git-mailinfo</em>, and creates a commit.  It is\r
 usually not necessary to use this command directly.</p>\r
@@ -329,7 +331,7 @@ information.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 03-Oct-2006 08:40:51 UTC\r
+Last updated 17-Jan-2007 23:27:37 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 2b1ff1454b48a6f45897a330ce4273b29f800b21..451434a757eab84d502a9529c571bc647e8b76d7 100644 (file)
@@ -12,6 +12,9 @@ SYNOPSIS
 
 DESCRIPTION
 -----------
+This is usually not what an end user wants to run directly.  See
+gitlink:git-am[1] instead.
+
 Takes three files <msg>, <patch>, and <info> prepared from an
 e-mail message by 'git-mailinfo', and creates a commit.  It is
 usually not necessary to use this command directly.
index 0b64a3fee9b7cfc312476f4a22aa9b24055e9f23..2e03242dfaddd48bc63f822e72b9065292ef0423 100644 (file)
@@ -461,10 +461,13 @@ header elements later.</p>
 <p>Unlike <tt>git-blame</tt> and <tt>git-annotate</tt> in older git, the extent\r
 of annotation can be limited to both line ranges and revision\r
 ranges.  When you are interested in finding the origin for\r
-ll. 40-60 for file <tt>foo</tt>, you can use <tt>-L</tt> option like this:</p>\r
+ll. 40-60 for file <tt>foo</tt>, you can use <tt>-L</tt> option like these\r
+(they mean the same thing &#8212; both ask for 21 lines starting at\r
+line 40):</p>\r
 <div class="literalblock">\r
 <div class="content">\r
-<pre><tt>git blame -L 40,60 foo</tt></pre>\r
+<pre><tt>git blame -L 40,60 foo\r
+git blame -L 40,+21 foo</tt></pre>\r
 </div></div>\r
 <p>Also you can use regular expression to specify the line range.</p>\r
 <div class="literalblock">\r
@@ -515,7 +518,7 @@ parents, using <tt>commit^!</tt> notation:</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 17-Jan-2007 17:42:11 UTC\r
+Last updated 17-Jan-2007 23:27:38 UTC\r
 </div>\r
 </div>\r
 </body>\r
index b14e7940778da2295f1b61ab4096c3ba29b908f9..5dd8e36bbddad0a49af17196c43fc297b04285dc 100644 (file)
@@ -118,9 +118,12 @@ SPECIFYING RANGES
 Unlike `git-blame` and `git-annotate` in older git, the extent
 of annotation can be limited to both line ranges and revision
 ranges.  When you are interested in finding the origin for
-ll. 40-60 for file `foo`, you can use `-L` option like this:
+ll. 40-60 for file `foo`, you can use `-L` option like these
+(they mean the same thing -- both ask for 21 lines starting at
+line 40):
 
        git blame -L 40,60 foo
+       git blame -L 40,+21 foo
 
 Also you can use regular expression to specify the line range.
 
index a68db3628ea90b93d83c16fd75b15ea951f7b33d..c40f13d27e6d905d31eb8385825df3147d447678 100644 (file)
@@ -276,6 +276,8 @@ git-commit-tree(1) Manual Page
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
+<p>This is usually not what an end user wants to run directly.  See\r
+<a href="git-commit.html">git-commit(1)</a> instead.</p>\r
 <p>Creates a new commit object based on the provided tree object and\r
 emits the new commit object id on stdout. If no parent is given then\r
 it is considered to be an initial tree.</p>\r
@@ -478,7 +480,7 @@ reversible operation.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 31-Dec-2006 01:19:01 UTC\r
+Last updated 17-Jan-2007 23:27:38 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 77ba96ed8a4820354ef6d2ff4265660385289f3d..f5d8050c9e20b66455454b35a5431fe91562a2de 100644 (file)
@@ -12,6 +12,9 @@ SYNOPSIS
 
 DESCRIPTION
 -----------
+This is usually not what an end user wants to run directly.  See
+gitlink:git-commit[1] instead.
+
 Creates a new commit object based on the provided tree object and
 emits the new commit object id on stdout. If no parent is given then
 it is considered to be an initial tree.
index 99a307c4b2d00705b45019021b969bf7c796c05d..12c00f3b8e3c9f7b4c31d7e30d943501fd1ecb57 100644 (file)
@@ -276,6 +276,8 @@ git-fetch-pack(1) Manual Page
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
+<p>Usually you would want to use <a href="git-fetch.html">git-fetch(1)</a> which is a\r
+higher level wrapper of this command instead.</p>\r
 <p>Invokes <em>git-upload-pack</em> on a potentially remote repository,\r
 and asks it to send objects missing from this repository, to\r
 update the named heads.  The list of commits available locally\r
@@ -369,7 +371,7 @@ have a common ancestor commit.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 08-Nov-2006 01:33:27 UTC\r
+Last updated 17-Jan-2007 23:27:39 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 3e6cd880b0e6aeda3056da1361ffcae52b89b531..90ef127d12471e2e77f0a1d2674dfd6f0b562134 100644 (file)
@@ -12,6 +12,9 @@ SYNOPSIS
 
 DESCRIPTION
 -----------
+Usually you would want to use gitlink:git-fetch[1] which is a
+higher level wrapper of this command instead.
+
 Invokes 'git-upload-pack' on a potentially remote repository,
 and asks it to send objects missing from this repository, to
 update the named heads.  The list of commits available locally
index 8eb768e1caaac53fb36f9db099d3837739257ba5..a0d11a5cb4154e8ac2d8b7a53c4001f74d8ada6e 100644 (file)
@@ -281,7 +281,7 @@ writes the commit log message in &lt;msg&gt; file, and the patches in
 &lt;patch&gt; file.  The author name, e-mail and e-mail subject are\r
 written out to the standard output to be used by git-applypatch\r
 to create a commit.  It is usually not necessary to use this\r
-command directly.</p>\r
+command directly.  See <a href="git-am.html">git-am(1)</a> instead.</p>\r
 </div>\r
 <h2>OPTIONS</h2>\r
 <div class="sectionbody">\r
@@ -357,7 +357,7 @@ Junio C Hamano &lt;junkio@cox.net&gt;</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 10-Jan-2007 05:37:42 UTC\r
+Last updated 17-Jan-2007 23:27:39 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 5088bbea84c0e6b681641b78b816755fa12f6b6d..1ff6e7d6c239cffa8386307b645b4934fb8b2c2a 100644 (file)
@@ -18,7 +18,7 @@ writes the commit log message in <msg> file, and the patches in
 <patch> file.  The author name, e-mail and e-mail subject are
 written out to the standard output to be used by git-applypatch
 to create a commit.  It is usually not necessary to use this
-command directly.
+command directly.  See gitlink:git-am[1] instead.
 
 
 OPTIONS
index dece80c36b22699bb198a7b7970cd89ab7ba849e..10789f5bdbe32830526f75c5d5985ee72e61e6b6 100644 (file)
@@ -278,7 +278,8 @@ git-parse-remote(1) Manual Page
 <div class="sectionbody">\r
 <p>This script is included in various scripts to supply\r
 routines to parse files under $GIT_DIR/remotes/ and\r
-$GIT_DIR/branches/.</p>\r
+$GIT_DIR/branches/ and configuration variables that are related\r
+to fetching, pulling and pushing.</p>\r
 <p>The primary entry points are:</p>\r
 <dl>\r
 <dt>\r
@@ -292,7 +293,8 @@ get_remote_refs_for_fetch
         (e.g. <tt>refs/heads/foo</tt>).  When <tt>&lt;refspec&gt;&#8230;</tt> is empty\r
         the returned list of refs consists of the defaults\r
         for the given <tt>&lt;repo&gt;</tt>, if specified in\r
-        <tt>$GIT_DIR/remotes/</tt> or <tt>$GIT_DIR/branches/</tt>.\r
+        <tt>$GIT_DIR/remotes/</tt>, <tt>$GIT_DIR/branches/</tt>, or <tt>remote.*.fetch</tt>\r
+        configuration.\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -324,7 +326,7 @@ get_remote_refs_for_push
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 03-Oct-2006 08:41:16 UTC\r
+Last updated 17-Jan-2007 23:27:40 UTC\r
 </div>\r
 </div>\r
 </body>\r
index fc27afe26d9d174c350e00804071630f879c663c..918ca55f5332e09ec3b54e715a3193766a0d4747 100644 (file)
@@ -14,7 +14,8 @@ DESCRIPTION
 -----------
 This script is included in various scripts to supply
 routines to parse files under $GIT_DIR/remotes/ and
-$GIT_DIR/branches/.
+$GIT_DIR/branches/ and configuration variables that are related
+to fetching, pulling and pushing.
 
 The primary entry points are:
 
@@ -25,7 +26,8 @@ get_remote_refs_for_fetch::
        (e.g. `refs/heads/foo`).  When `<refspec>...` is empty
        the returned list of refs consists of the defaults
        for the given `<repo>`, if specified in
-       `$GIT_DIR/remotes/` or `$GIT_DIR/branches/`.
+       `$GIT_DIR/remotes/`, `$GIT_DIR/branches/`, or `remote.*.fetch`
+       configuration.
 
 get_remote_refs_for_push::
        Given the list of user-supplied `<repo> <refspec>...`,
index 7c89c032935676539036a5fa702e919bbfa302fb..2d2daac4de13e507caf19c0e5bbc1019740f1952 100644 (file)
@@ -276,6 +276,7 @@ git-resolve(1) Manual Page
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
+<p>DEPRECATED.  Use <tt>git-merge</tt> instead.</p>\r
 <p>Given two commits and a merge message, merge the &lt;merged&gt; commit\r
 into &lt;current&gt; commit, with the commit log message &lt;message&gt;.</p>\r
 <p>When &lt;current&gt; is a descendant of &lt;merged&gt;, or &lt;current&gt; is an\r
@@ -298,7 +299,7 @@ Dan Holmsand &lt;holmsand@gmail.com&gt;.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 03-Oct-2006 08:41:24 UTC\r
+Last updated 17-Jan-2007 23:27:40 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 4e57c2b2877b1594b3a467c0930348221e98c672..0925973f12edcb863ede32cf1e95d9e9ebac1cf5 100644 (file)
@@ -12,6 +12,8 @@ SYNOPSIS
 
 DESCRIPTION
 -----------
+DEPRECATED.  Use `git-merge` instead.
+
 Given two commits and a merge message, merge the <merged> commit
 into <current> commit, with the commit log message <message>.
 
index 2da40382bcb42a64a14cf3a5f72c292d5385a8e6..dc9936b8db30b06e127301bb168a7cfe1258e716 100644 (file)
@@ -276,6 +276,8 @@ git-send-pack(1) Manual Page
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
+<p>Usually you would want to use <a href="git-push.html">git-push(1)</a> which is a\r
+higher level wrapper of this command instead.</p>\r
 <p>Invokes <em>git-receive-pack</em> on a possibly remote repository, and\r
 updates it from the current repository, sending named refs.</p>\r
 </div>\r
@@ -416,7 +418,7 @@ to disable the fast-forward check only on that ref.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 12-Oct-2006 19:10:26 UTC\r
+Last updated 17-Jan-2007 23:27:40 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 5376f685486c6f19cbe6ea3b8391cac5b50c593b..88f4e394ef244030274c37d75a3bb76f376c6470 100644 (file)
@@ -12,6 +12,9 @@ SYNOPSIS
 
 DESCRIPTION
 -----------
+Usually you would want to use gitlink:git-push[1] which is a
+higher level wrapper of this command instead.
+
 Invokes 'git-receive-pack' on a possibly remote repository, and
 updates it from the current repository, sending named refs.