Skip to content

Commit

Permalink
Autogenerated HTML docs for v1.7.4.1-266-ga62ea
Browse files Browse the repository at this point in the history
  • Loading branch information
Junio C Hamano committed Mar 15, 2011
1 parent 92faa80 commit 5f3d839
Show file tree
Hide file tree
Showing 277 changed files with 220 additions and 2,349 deletions.
36 changes: 33 additions & 3 deletions RelNotes/1.7.5.txt
Expand Up @@ -10,28 +10,49 @@ Updates since v1.7.4

* Various vcs-svn enhancements.

* Update to more modern HP-UX port.

* "git apply -v" reports offset lines when the patch does not apply at
the exact location recorded in the diff output.

* "git branch --track" (and "git checkout --track --branch") used to
allow setting up a random non-branch that does not make sense to follow
as the "upstream". The command correctly diagnoses it as an error.

* "git config" used to be also known as "git repo-config", but the old
name is now officially deprecated.

* "git checkout --detach <commit>" is a more user friendly synonym for
"git checkout <commit>^0".

* "git checkout" performed on detached HEAD gives a warning and an
advice when the commit being left behind will become unreachable from
any branch or tag.

* "git cherry-pick" and "git revert" can be told to use custom merge
strategy, similar to "git rebase".

* "git cherry-pick" remembers which commit failed to apply when it is
stopped by conflicts, making it unnecessary to use "commit -c $commit"
to conclude it.

* "git cvsimport" bails out immediately when the cvs server cannot be
reached, without spewing unnecessary error messages that complain about
the server response it never got.

* "git grep --no-index" did not honor pathspecs correctly, returning
paths outside the specified area.

* "git log" family of commands now understand globbing pathspecs. You
can say "git log -- '*.txt'" for example.

* "git rev-list --objects $revs -- $pathspec" would limit the objects listed
in its output properly with the pathspec, in preparation for narrow
clones.

* "git log" family of commands now understand globbing pathspecs. You
can say "git log -- '*.txt'" for example.
* "git push" with no parameters gives better advice messages when
"tracking" is used as the push.default semantics or there is no remote
configured yet.

* "git rerere" learned a new subcommand "remaining", that is similar to
"status" that lists the paths that had conflicts that are known to
Expand All @@ -52,6 +73,15 @@ Fixes since v1.7.4
All of the fixes in the v1.7.4.X maintenance series are included in this
release, unless otherwise noted.

* We used to keep one file descriptor open for each and every packfile
that we have a mmap window on it (read: "in use"), even when for very
tiny packfiles. We now close the file descriptor early when the entire
packfile fits inside one mmap window.

* "git apply" used to confuse lines updated by previous hunks as lines
that existed before when applying a hunk, contributing misapplication
of patches with offsets.

* "git clone /no/such/path" did not fail correctly (jk/fail-null/clone).

* "git checkout $other_branch" silently removed untracked symbolic links
Expand All @@ -75,6 +105,6 @@ release, unless otherwise noted.

---
exec >/var/tmp/1
O=v1.7.4.1-224-g66ecd2d
O=v1.7.4.1-265-gd0ef5a7
echo O=$(git describe 'master')
git shortlog --no-merges ^maint ^$O master
10 changes: 1 addition & 9 deletions git-add.html
Expand Up @@ -922,21 +922,13 @@ <h2 id="_see_also">SEE ALSO</h2>
<a href="git-commit.html">git-commit(1)</a>
<a href="git-update-index.html">git-update-index(1)</a></p></div>
</div>
<h2 id="_author">Author</h2>
<div class="sectionbody">
<div class="paragraph"><p>Written by Linus Torvalds &lt;<a href="mailto:torvalds@osdl.org">torvalds@osdl.org</a>&gt;</p></div>
</div>
<h2 id="_documentation">Documentation</h2>
<div class="sectionbody">
<div class="paragraph"><p>Documentation by Junio C Hamano and the git-list &lt;<a href="mailto:git@vger.kernel.org">git@vger.kernel.org</a>&gt;.</p></div>
</div>
<h2 id="_git">GIT</h2>
<div class="sectionbody">
<div class="paragraph"><p>Part of the <a href="git.html">git(1)</a> suite</p></div>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2011-01-04 22:05:44 UTC
Last updated 2011-03-15 23:30:13 UTC
</div>
</div>
</body>
Expand Down
8 changes: 0 additions & 8 deletions git-add.txt
Expand Up @@ -378,14 +378,6 @@ linkgit:git-mv[1]
linkgit:git-commit[1]
linkgit:git-update-index[1]

Author
------
Written by Linus Torvalds <torvalds@osdl.org>

Documentation
--------------
Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.

GIT
---
Part of the linkgit:git[1] suite
10 changes: 1 addition & 9 deletions git-am.html
Expand Up @@ -735,21 +735,13 @@ <h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p><a href="git-apply.html">git-apply(1)</a>.</p></div>
</div>
<h2 id="_author">Author</h2>
<div class="sectionbody">
<div class="paragraph"><p>Written by Junio C Hamano &lt;<a href="mailto:gitster@pobox.com">gitster@pobox.com</a>&gt;</p></div>
</div>
<h2 id="_documentation">Documentation</h2>
<div class="sectionbody">
<div class="paragraph"><p>Documentation by Petr Baudis, Junio C Hamano and the git-list &lt;<a href="mailto:git@vger.kernel.org">git@vger.kernel.org</a>&gt;.</p></div>
</div>
<h2 id="_git">GIT</h2>
<div class="sectionbody">
<div class="paragraph"><p>Part of the <a href="git.html">git(1)</a> suite</p></div>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2010-11-06 00:41:57 UTC
Last updated 2011-03-15 23:30:13 UTC
</div>
</div>
</body>
Expand Down
9 changes: 0 additions & 9 deletions git-am.txt
Expand Up @@ -189,15 +189,6 @@ SEE ALSO
--------
linkgit:git-apply[1].


Author
------
Written by Junio C Hamano <gitster@pobox.com>

Documentation
--------------
Documentation by Petr Baudis, Junio C Hamano and the git-list <git@vger.kernel.org>.

GIT
---
Part of the linkgit:git[1] suite
6 changes: 1 addition & 5 deletions git-annotate.html
Expand Up @@ -638,17 +638,13 @@ <h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p><a href="git-blame.html">git-blame(1)</a></p></div>
</div>
<h2 id="_author">AUTHOR</h2>
<div class="sectionbody">
<div class="paragraph"><p>Written by Ryan Anderson &lt;<a href="mailto:ryan@michonline.com">ryan@michonline.com</a>&gt;.</p></div>
</div>
<h2 id="_git">GIT</h2>
<div class="sectionbody">
<div class="paragraph"><p>Part of the <a href="git.html">git(1)</a> suite</p></div>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2009-03-03 08:28:29 UTC
Last updated 2011-03-15 23:30:13 UTC
</div>
</div>
</body>
Expand Down
4 changes: 0 additions & 4 deletions git-annotate.txt
Expand Up @@ -27,10 +27,6 @@ SEE ALSO
--------
linkgit:git-blame[1]

AUTHOR
------
Written by Ryan Anderson <ryan@michonline.com>.

GIT
---
Part of the linkgit:git[1] suite
10 changes: 1 addition & 9 deletions git-apply.html
Expand Up @@ -818,21 +818,13 @@ <h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p><a href="git-am.html">git-am(1)</a>.</p></div>
</div>
<h2 id="_author">Author</h2>
<div class="sectionbody">
<div class="paragraph"><p>Written by Linus Torvalds &lt;<a href="mailto:torvalds@osdl.org">torvalds@osdl.org</a>&gt;</p></div>
</div>
<h2 id="_documentation">Documentation</h2>
<div class="sectionbody">
<div class="paragraph"><p>Documentation by Junio C Hamano</p></div>
</div>
<h2 id="_git">GIT</h2>
<div class="sectionbody">
<div class="paragraph"><p>Part of the <a href="git.html">git(1)</a> suite</p></div>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2011-03-04 23:54:12 UTC
Last updated 2011-03-15 23:30:13 UTC
</div>
</div>
</body>
Expand Down
10 changes: 0 additions & 10 deletions git-apply.txt
Expand Up @@ -246,20 +246,10 @@ If `--index` is not specified, then the submodule commits in the patch
are ignored and only the absence or presence of the corresponding
subdirectory is checked and (if possible) updated.


SEE ALSO
--------
linkgit:git-am[1].


Author
------
Written by Linus Torvalds <torvalds@osdl.org>

Documentation
--------------
Documentation by Junio C Hamano

GIT
---
Part of the linkgit:git[1] suite
10 changes: 1 addition & 9 deletions git-archimport.html
Expand Up @@ -552,21 +552,13 @@ <h2 id="_options">OPTIONS</h2>
</dd>
</dl></div>
</div>
<h2 id="_author">Author</h2>
<div class="sectionbody">
<div class="paragraph"><p>Written by Martin Langhoff &lt;<a href="mailto:martin@laptop.org">martin@laptop.org</a>&gt;.</p></div>
</div>
<h2 id="_documentation">Documentation</h2>
<div class="sectionbody">
<div class="paragraph"><p>Documentation by Junio C Hamano, Martin Langhoff and the git-list &lt;<a href="mailto:git@vger.kernel.org">git@vger.kernel.org</a>&gt;.</p></div>
</div>
<h2 id="_git">GIT</h2>
<div class="sectionbody">
<div class="paragraph"><p>Part of the <a href="git.html">git(1)</a> suite</p></div>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2010-11-06 00:41:57 UTC
Last updated 2011-03-15 23:30:13 UTC
</div>
</div>
</body>
Expand Down
8 changes: 0 additions & 8 deletions git-archimport.txt
Expand Up @@ -107,14 +107,6 @@ OPTIONS
Archive/branch identifier in a format that `tla log` understands.


Author
------
Written by Martin Langhoff <martin@laptop.org>.

Documentation
--------------
Documentation by Junio C Hamano, Martin Langhoff and the git-list <git@vger.kernel.org>.

GIT
---
Part of the linkgit:git[1] suite
10 changes: 1 addition & 9 deletions git-archive.html
Expand Up @@ -674,21 +674,13 @@ <h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p><a href="gitattributes.html">gitattributes(5)</a></p></div>
</div>
<h2 id="_author">Author</h2>
<div class="sectionbody">
<div class="paragraph"><p>Written by Franck Bui-Huu and Rene Scharfe.</p></div>
</div>
<h2 id="_documentation">Documentation</h2>
<div class="sectionbody">
<div class="paragraph"><p>Documentation by David Greaves, Junio C Hamano and the git-list &lt;<a href="mailto:git@vger.kernel.org">git@vger.kernel.org</a>&gt;.</p></div>
</div>
<h2 id="_git">GIT</h2>
<div class="sectionbody">
<div class="paragraph"><p>Part of the <a href="git.html">git(1)</a> suite</p></div>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2011-01-12 09:08:33 UTC
Last updated 2011-03-15 23:30:13 UTC
</div>
</div>
</body>
Expand Down
8 changes: 0 additions & 8 deletions git-archive.txt
Expand Up @@ -153,14 +153,6 @@ SEE ALSO
--------
linkgit:gitattributes[5]

Author
------
Written by Franck Bui-Huu and Rene Scharfe.

Documentation
--------------
Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.

GIT
---
Part of the linkgit:git[1] suite
10 changes: 1 addition & 9 deletions git-bisect.html
Expand Up @@ -688,14 +688,6 @@ <h2 id="_examples">EXAMPLES</h2>
</li>
</ul></div>
</div>
<h2 id="_author">Author</h2>
<div class="sectionbody">
<div class="paragraph"><p>Written by Linus Torvalds &lt;<a href="mailto:torvalds@osdl.org">torvalds@osdl.org</a>&gt;</p></div>
</div>
<h2 id="_documentation">Documentation</h2>
<div class="sectionbody">
<div class="paragraph"><p>Documentation by Junio C Hamano and the git-list &lt;<a href="mailto:git@vger.kernel.org">git@vger.kernel.org</a>&gt;.</p></div>
</div>
<h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p><a href="git-bisect-lk2009.html">Fighting regressions with git bisect</a>,
Expand All @@ -707,7 +699,7 @@ <h2 id="_git">GIT</h2>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2009-12-01 21:16:24 UTC
Last updated 2011-03-15 23:30:13 UTC
</div>
</div>
</body>
Expand Down
8 changes: 0 additions & 8 deletions git-bisect.txt
Expand Up @@ -322,14 +322,6 @@ $ git bisect run sh -c "make || exit 125; ~/check_test_case.sh"
+
Does the same as the previous example, but on a single line.

Author
------
Written by Linus Torvalds <torvalds@osdl.org>

Documentation
-------------
Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.

SEE ALSO
--------
link:git-bisect-lk2009.html[Fighting regressions with git bisect],
Expand Down
6 changes: 1 addition & 5 deletions git-blame.html
Expand Up @@ -959,17 +959,13 @@ <h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p><a href="git-annotate.html">git-annotate(1)</a></p></div>
</div>
<h2 id="_author">AUTHOR</h2>
<div class="sectionbody">
<div class="paragraph"><p>Written by Junio C Hamano &lt;<a href="mailto:gitster@pobox.com">gitster@pobox.com</a>&gt;</p></div>
</div>
<h2 id="_git">GIT</h2>
<div class="sectionbody">
<div class="paragraph"><p>Part of the <a href="git.html">git(1)</a> suite</p></div>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2010-12-01 03:09:03 UTC
Last updated 2011-03-15 23:30:13 UTC
</div>
</div>
</body>
Expand Down
4 changes: 0 additions & 4 deletions git-blame.txt
Expand Up @@ -198,10 +198,6 @@ SEE ALSO
--------
linkgit:git-annotate[1]

AUTHOR
------
Written by Junio C Hamano <gitster@pobox.com>

GIT
---
Part of the linkgit:git[1] suite
10 changes: 1 addition & 9 deletions git-branch.html
Expand Up @@ -784,21 +784,13 @@ <h2 id="_see_also">SEE ALSO</h2>
<a href="user-manual.html#what-is-a-branch">&#8220;Understanding history: What is
a branch?&#8221;</a> in the Git User&#8217;s Manual.</p></div>
</div>
<h2 id="_author">Author</h2>
<div class="sectionbody">
<div class="paragraph"><p>Written by Linus Torvalds &lt;<a href="mailto:torvalds@osdl.org">torvalds@osdl.org</a>&gt; and Junio C Hamano &lt;<a href="mailto:gitster@pobox.com">gitster@pobox.com</a>&gt;</p></div>
</div>
<h2 id="_documentation">Documentation</h2>
<div class="sectionbody">
<div class="paragraph"><p>Documentation by Junio C Hamano and the git-list &lt;<a href="mailto:git@vger.kernel.org">git@vger.kernel.org</a>&gt;.</p></div>
</div>
<h2 id="_git">GIT</h2>
<div class="sectionbody">
<div class="paragraph"><p>Part of the <a href="git.html">git(1)</a> suite</p></div>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2010-11-25 03:13:40 UTC
Last updated 2011-03-15 23:30:13 UTC
</div>
</div>
</body>
Expand Down

0 comments on commit 5f3d839

Please sign in to comment.