Skip to content

Commit 78b92a8

Browse files
author
Junio C Hamano
committed
Autogenerated HTML docs for v1.7.0-rc2-13-g8b233
1 parent 154d47b commit 78b92a8

File tree

4 files changed

+67
-14
lines changed

4 files changed

+67
-14
lines changed

git-add.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ <h2 id="_examples">EXAMPLES</h2>
541541
</p>
542542
<div class="listingblock">
543543
<div class="content">
544-
<pre><tt>$ git add Documentation/\\*.txt</tt></pre>
544+
<pre><tt>$ git add Documentation/\*.txt</tt></pre>
545545
</div></div>
546546
<div class="para"><p>Note that the asterisk <tt>*</tt> is quoted from the shell in this
547547
example; this lets the command include the files from
@@ -721,7 +721,7 @@ <h2 id="_git">GIT</h2>
721721
</div>
722722
<div id="footer">
723723
<div id="footer-text">
724-
Last updated 2010-01-21 17:44:21 UTC
724+
Last updated 2010-02-09 07:33:56 UTC
725725
</div>
726726
</div>
727727
</body>

git-add.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ EXAMPLES
153153
and its subdirectories:
154154
+
155155
------------
156-
$ git add Documentation/\\*.txt
156+
$ git add Documentation/\*.txt
157157
------------
158158
+
159159
Note that the asterisk `\*` is quoted from the shell in this

git-push.html

Lines changed: 54 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -781,18 +781,66 @@ <h2 id="_output">OUTPUT</h2>
781781
<div class="content">
782782
<pre><tt> &lt;flag&gt; \t &lt;from&gt;:&lt;to&gt; \t &lt;summary&gt; (&lt;reason&gt;)</tt></pre>
783783
</div></div>
784+
<div class="para"><p>The status of up-to-date refs is shown only if --porcelain or --verbose
785+
option is used.</p></div>
784786
<div class="vlist"><dl>
785787
<dt>
786788
flag
787789
</dt>
788790
<dd>
789791
<p>
790-
A single character indicating the status of the ref. This is
791-
blank for a successfully pushed ref, <tt>!</tt> for a ref that was
792-
rejected or failed to push, and <em>=</em> for a ref that was up to
793-
date and did not need pushing (note that the status of up to
794-
date refs is shown only when <tt>git push</tt> is running verbosely).
792+
A single character indicating the status of the ref:
795793
</p>
794+
<div class="hlist"><table>
795+
<tr>
796+
<td class="hlist1">
797+
(space)
798+
</td>
799+
<td class="hlist2">
800+
for a successfully pushed fast-forward;
801+
</td>
802+
</tr>
803+
<tr>
804+
<td class="hlist1">
805+
<tt>&#43;</tt>
806+
</td>
807+
<td class="hlist2">
808+
for a successful forced update;
809+
</td>
810+
</tr>
811+
<tr>
812+
<td class="hlist1">
813+
<tt>-</tt>
814+
</td>
815+
<td class="hlist2">
816+
for a successfully deleted ref;
817+
</td>
818+
</tr>
819+
<tr>
820+
<td class="hlist1">
821+
<tt>*</tt>
822+
</td>
823+
<td class="hlist2">
824+
for a successfully pushed new ref;
825+
</td>
826+
</tr>
827+
<tr>
828+
<td class="hlist1">
829+
<tt>!</tt>
830+
</td>
831+
<td class="hlist2">
832+
for a ref that was rejected or failed to push; and
833+
</td>
834+
</tr>
835+
<tr>
836+
<td class="hlist1">
837+
<tt>=</tt>
838+
</td>
839+
<td class="hlist2">
840+
for a ref that was up to date and did not need pushing.
841+
</td>
842+
</tr>
843+
</table></div>
796844
</dd>
797845
<dt>
798846
summary
@@ -1062,7 +1110,7 @@ <h2 id="_git">GIT</h2>
10621110
</div>
10631111
<div id="footer">
10641112
<div id="footer-text">
1065-
Last updated 2010-01-24 20:06:02 UTC
1113+
Last updated 2010-02-09 07:33:56 UTC
10661114
</div>
10671115
</div>
10681116
</body>

git-push.txt

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,17 @@ If --porcelain is used, then each line of the output is of the form:
176176
<flag> \t <from>:<to> \t <summary> (<reason>)
177177
-------------------------------
178178

179+
The status of up-to-date refs is shown only if --porcelain or --verbose
180+
option is used.
181+
179182
flag::
180-
A single character indicating the status of the ref. This is
181-
blank for a successfully pushed ref, `!` for a ref that was
182-
rejected or failed to push, and '=' for a ref that was up to
183-
date and did not need pushing (note that the status of up to
184-
date refs is shown only when `git push` is running verbosely).
183+
A single character indicating the status of the ref:
184+
(space);; for a successfully pushed fast-forward;
185+
`{plus}`;; for a successful forced update;
186+
`-`;; for a successfully deleted ref;
187+
`*`;; for a successfully pushed new ref;
188+
`!`;; for a ref that was rejected or failed to push; and
189+
`=`;; for a ref that was up to date and did not need pushing.
185190

186191
summary::
187192
For a successfully pushed ref, the summary shows the old and new

0 commit comments

Comments
 (0)