Skip to content

Commit

Permalink
Autogenerated HTML docs for v1.7.12-437-g1084f
Browse files Browse the repository at this point in the history
  • Loading branch information
gitster committed Sep 14, 2012
1 parent 693e709 commit f76c10b
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
13 changes: 13 additions & 0 deletions RelNotes/1.8.0.txt
Expand Up @@ -79,6 +79,13 @@ Performance, Internal Implementation, etc. (please report possible regressions)
* Compatibility wrapper for systems that lack usable setitimer() has * Compatibility wrapper for systems that lack usable setitimer() has
been added. been added.


* The option parsing of "git checkout" had error checking, dwim and
defaulting missing options, all mixed in the code, and issuing an
appropriate error message with useful context was getting harder.
The code has been reorganized to allow giving a proper diagnosis
when the user says "git checkout -b -t foo bar" (e.g. "-t" is not a
good name for a branch).

* Many internal uses of "git merge-base" equivalent were only to see * Many internal uses of "git merge-base" equivalent were only to see
if one commit fast-forwards to the other, which did not need the if one commit fast-forwards to the other, which did not need the
full set of merge bases to be computed. They have been updated to full set of merge bases to be computed. They have been updated to
Expand All @@ -102,6 +109,12 @@ Unless otherwise noted, all the fixes since v1.7.12 in the
maintenance track are contained in this release (see release notes maintenance track are contained in this release (see release notes
to them for details). to them for details).


* "git fetch --all", when passed "--no-tags", did not honor the
"--no-tags" option while fetching from individual remotes (the same
issue existed with "--tags", but combination "--all --tags" makes
much less sense than "--all --no-tags").
(merge 8556646 dj/fetch-all-tags later to maint).

* The subcommand in "git remote" to remove a defined remote was * The subcommand in "git remote" to remove a defined remote was
"rm" and the command did not take a fully-spelled "remove". "rm" and the command did not take a fully-spelled "remove".
(merge e17dba8 nd/maint-remote-remove later to maint). (merge e17dba8 nd/maint-remote-remove later to maint).
Expand Down
12 changes: 11 additions & 1 deletion git-ls-remote.html
Expand Up @@ -642,6 +642,16 @@ <h2 id="_options">OPTIONS</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
--get-url
</dt>
<dd>
<p>
Expand the URL of the given remote repository taking into account any
"url.&lt;base&gt;.insteadOf" config setting (See <a href="git-config.html">git-config(1)</a>) and
exit without talking to the remote.
</p>
</dd>
<dt class="hdlist1">
&lt;repository&gt; &lt;repository&gt;
</dt> </dt>
<dd> <dd>
Expand Down Expand Up @@ -694,7 +704,7 @@ <h2 id="_git">GIT</h2>
<div id="footnotes"><hr /></div> <div id="footnotes"><hr /></div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2011-11-15 13:45:02 PDT Last updated 2012-09-14 13:10:46 PDT
</div> </div>
</div> </div>
</body> </body>
Expand Down
5 changes: 5 additions & 0 deletions git-ls-remote.txt
Expand Up @@ -42,6 +42,11 @@ OPTIONS
it successfully talked with the remote repository, whether it it successfully talked with the remote repository, whether it
found any matching refs. found any matching refs.


--get-url::
Expand the URL of the given remote repository taking into account any
"url.<base>.insteadOf" config setting (See linkgit:git-config[1]) and
exit without talking to the remote.

<repository>:: <repository>::
Location of the repository. The shorthand defined in Location of the repository. The shorthand defined in
$GIT_DIR/branches/ can be used. Use "." (dot) to list references in $GIT_DIR/branches/ can be used. Use "." (dot) to list references in
Expand Down

0 comments on commit f76c10b

Please sign in to comment.