Skip to content

Commit

Permalink
Autogenerated HTML docs for v1.7.6-404-g5d2fc
Browse files Browse the repository at this point in the history
  • Loading branch information
Junio C Hamano committed Aug 5, 2011
1 parent 86d8436 commit 16ebcd0
Show file tree
Hide file tree
Showing 26 changed files with 146 additions and 148 deletions.
18 changes: 9 additions & 9 deletions git-archive.html
Expand Up @@ -652,7 +652,7 @@ <h2 id="_examples">EXAMPLES</h2>
<div class="sectionbody"> <div class="sectionbody">
<div class="dlist"><dl> <div class="dlist"><dl>
<dt class="hdlist1"> <dt class="hdlist1">
git archive --format=tar --prefix=junk/ HEAD | (cd /var/tmp/ &amp;&amp; tar xf -) <tt>git archive --format=tar --prefix=junk/ HEAD | (cd /var/tmp/ &amp;&amp; tar xf -)</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -662,31 +662,31 @@ <h2 id="_examples">EXAMPLES</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git archive --format=tar --prefix=git-1.4.0/ v1.4.0 | gzip &gt;git-1.4.0.tar.gz <tt>git archive --format=tar --prefix=git-1.4.0/ v1.4.0 | gzip &gt;git-1.4.0.tar.gz</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Create a compressed tarball for v1.4.0 release. Create a compressed tarball for v1.4.0 release.
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git archive --format=tar.gz --prefix=git-1.4.0/ v1.4.0 &gt;git-1.4.0.tar.gz <tt>git archive --format=tar.gz --prefix=git-1.4.0/ v1.4.0 &gt;git-1.4.0.tar.gz</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Same as above, but using the builtin tar.gz handling. Same as above, but using the builtin tar.gz handling.
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git archive --prefix=git-1.4.0/ -o git-1.4.0.tar.gz v1.4.0 <tt>git archive --prefix=git-1.4.0/ -o git-1.4.0.tar.gz v1.4.0</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Same as above, but the format is inferred from the output file. Same as above, but the format is inferred from the output file.
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git archive --format=tar --prefix=git-1.4.0/ v1.4.0&#94;{tree} | gzip &gt;git-1.4.0.tar.gz <tt>git archive --format=tar --prefix=git-1.4.0/ v1.4.0&#94;{tree} | gzip &gt;git-1.4.0.tar.gz</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -695,7 +695,7 @@ <h2 id="_examples">EXAMPLES</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git archive --format=zip --prefix=git-docs/ HEAD:Documentation/ &gt; git-1.4.0-docs.zip <tt>git archive --format=zip --prefix=git-docs/ HEAD:Documentation/ &gt; git-1.4.0-docs.zip</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -704,7 +704,7 @@ <h2 id="_examples">EXAMPLES</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git archive -o latest.zip HEAD <tt>git archive -o latest.zip HEAD</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -714,7 +714,7 @@ <h2 id="_examples">EXAMPLES</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git config tar.tar.xz.command "xz -c" <tt>git config tar.tar.xz.command "xz -c"</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -735,7 +735,7 @@ <h2 id="_git">GIT</h2>
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2011-07-19 20:01:51 UTC Last updated 2011-08-05 00:04:52 UTC
</div> </div>
</div> </div>
</body> </body>
Expand Down
16 changes: 8 additions & 8 deletions git-archive.txt
Expand Up @@ -142,41 +142,41 @@ while archiving any tree in your `$GIT_DIR/info/attributes` file.


EXAMPLES EXAMPLES
-------- --------
git archive --format=tar --prefix=junk/ HEAD | (cd /var/tmp/ && tar xf -):: `git archive --format=tar --prefix=junk/ HEAD | (cd /var/tmp/ && tar xf -)`::


Create a tar archive that contains the contents of the Create a tar archive that contains the contents of the
latest commit on the current branch, and extract it in the latest commit on the current branch, and extract it in the
`/var/tmp/junk` directory. `/var/tmp/junk` directory.


git archive --format=tar --prefix=git-1.4.0/ v1.4.0 | gzip >git-1.4.0.tar.gz:: `git archive --format=tar --prefix=git-1.4.0/ v1.4.0 | gzip >git-1.4.0.tar.gz`::


Create a compressed tarball for v1.4.0 release. Create a compressed tarball for v1.4.0 release.


git archive --format=tar.gz --prefix=git-1.4.0/ v1.4.0 >git-1.4.0.tar.gz:: `git archive --format=tar.gz --prefix=git-1.4.0/ v1.4.0 >git-1.4.0.tar.gz`::


Same as above, but using the builtin tar.gz handling. Same as above, but using the builtin tar.gz handling.


git archive --prefix=git-1.4.0/ -o git-1.4.0.tar.gz v1.4.0:: `git archive --prefix=git-1.4.0/ -o git-1.4.0.tar.gz v1.4.0`::


Same as above, but the format is inferred from the output file. Same as above, but the format is inferred from the output file.


git archive --format=tar --prefix=git-1.4.0/ v1.4.0{caret}\{tree\} | gzip >git-1.4.0.tar.gz:: `git archive --format=tar --prefix=git-1.4.0/ v1.4.0{caret}\{tree\} | gzip >git-1.4.0.tar.gz`::


Create a compressed tarball for v1.4.0 release, but without a Create a compressed tarball for v1.4.0 release, but without a
global extended pax header. global extended pax header.


git archive --format=zip --prefix=git-docs/ HEAD:Documentation/ > git-1.4.0-docs.zip:: `git archive --format=zip --prefix=git-docs/ HEAD:Documentation/ > git-1.4.0-docs.zip`::


Put everything in the current head's Documentation/ directory Put everything in the current head's Documentation/ directory
into 'git-1.4.0-docs.zip', with the prefix 'git-docs/'. into 'git-1.4.0-docs.zip', with the prefix 'git-docs/'.


git archive -o latest.zip HEAD:: `git archive -o latest.zip HEAD`::


Create a Zip archive that contains the contents of the latest Create a Zip archive that contains the contents of the latest
commit on the current branch. Note that the output format is commit on the current branch. Note that the output format is
inferred by the extension of the output file. inferred by the extension of the output file.


git config tar.tar.xz.command "xz -c":: `git config tar.tar.xz.command "xz -c"`::


Configure a "tar.xz" format for making LZMA-compressed tarfiles. Configure a "tar.xz" format for making LZMA-compressed tarfiles.
You can use it specifying `--format=tar.xz`, or by creating an You can use it specifying `--format=tar.xz`, or by creating an
Expand Down
16 changes: 8 additions & 8 deletions git-cherry-pick.html
Expand Up @@ -603,7 +603,7 @@ <h2 id="_examples">EXAMPLES</h2>
<div class="sectionbody"> <div class="sectionbody">
<div class="dlist"><dl> <div class="dlist"><dl>
<dt class="hdlist1"> <dt class="hdlist1">
git cherry-pick master <tt>git cherry-pick master</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -612,10 +612,10 @@ <h2 id="_examples">EXAMPLES</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git cherry-pick ..master <tt>git cherry-pick ..master</tt>
</dt> </dt>
<dt class="hdlist1"> <dt class="hdlist1">
git cherry-pick ^HEAD master <tt>git cherry-pick ^HEAD master</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -624,7 +624,7 @@ <h2 id="_examples">EXAMPLES</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git cherry-pick master&#126;4 master&#126;2 <tt>git cherry-pick master&#126;4 master&#126;2</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -634,7 +634,7 @@ <h2 id="_examples">EXAMPLES</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git cherry-pick -n master~1 next <tt>git cherry-pick -n master~1 next</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -645,7 +645,7 @@ <h2 id="_examples">EXAMPLES</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git cherry-pick --ff ..next <tt>git cherry-pick --ff ..next</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -657,7 +657,7 @@ <h2 id="_examples">EXAMPLES</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git rev-list --reverse master -- README | git cherry-pick -n --stdin <tt>git rev-list --reverse master -- README | git cherry-pick -n --stdin</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand Down Expand Up @@ -718,7 +718,7 @@ <h2 id="_git">GIT</h2>
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2011-07-23 00:49:30 UTC Last updated 2011-08-05 00:04:52 UTC
</div> </div>
</div> </div>
</body> </body>
Expand Down
14 changes: 7 additions & 7 deletions git-cherry-pick.txt
Expand Up @@ -112,39 +112,39 @@ effect to your index in a row.


EXAMPLES EXAMPLES
-------- --------
git cherry-pick master:: `git cherry-pick master`::


Apply the change introduced by the commit at the tip of the Apply the change introduced by the commit at the tip of the
master branch and create a new commit with this change. master branch and create a new commit with this change.


git cherry-pick ..master:: `git cherry-pick ..master`::
git cherry-pick ^HEAD master:: `git cherry-pick ^HEAD master`::


Apply the changes introduced by all commits that are ancestors Apply the changes introduced by all commits that are ancestors
of master but not of HEAD to produce new commits. of master but not of HEAD to produce new commits.


git cherry-pick master{tilde}4 master{tilde}2:: `git cherry-pick master{tilde}4 master{tilde}2`::


Apply the changes introduced by the fifth and third last Apply the changes introduced by the fifth and third last
commits pointed to by master and create 2 new commits with commits pointed to by master and create 2 new commits with
these changes. these changes.


git cherry-pick -n master~1 next:: `git cherry-pick -n master~1 next`::


Apply to the working tree and the index the changes introduced Apply to the working tree and the index the changes introduced
by the second last commit pointed to by master and by the last by the second last commit pointed to by master and by the last
commit pointed to by next, but do not create any commit with commit pointed to by next, but do not create any commit with
these changes. these changes.


git cherry-pick --ff ..next:: `git cherry-pick --ff ..next`::


If history is linear and HEAD is an ancestor of next, update If history is linear and HEAD is an ancestor of next, update
the working tree and advance the HEAD pointer to match next. the working tree and advance the HEAD pointer to match next.
Otherwise, apply the changes introduced by those commits that Otherwise, apply the changes introduced by those commits that
are in next but not HEAD to the current branch, creating a new are in next but not HEAD to the current branch, creating a new
commit for each new change. commit for each new change.


git rev-list --reverse master \-- README | git cherry-pick -n --stdin:: `git rev-list --reverse master \-- README | git cherry-pick -n --stdin`::


Apply the changes introduced by all commits on the master Apply the changes introduced by all commits on the master
branch that touched README to the working tree and index, branch that touched README to the working tree and index,
Expand Down
8 changes: 4 additions & 4 deletions git-grep.html
Expand Up @@ -848,7 +848,7 @@ <h2 id="_examples">Examples</h2>
<div class="sectionbody"> <div class="sectionbody">
<div class="dlist"><dl> <div class="dlist"><dl>
<dt class="hdlist1"> <dt class="hdlist1">
git grep &#39;time_t&#39; -- &#39;*.[ch]&#39; <tt>git grep &#39;time_t&#39; -- &#39;*.[ch]&#39;</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -857,7 +857,7 @@ <h2 id="_examples">Examples</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git grep -e &#39;#define&#39; --and \( -e MAX_PATH -e PATH_MAX \) <tt>git grep -e &#39;#define&#39; --and \( -e MAX_PATH -e PATH_MAX \)</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -866,7 +866,7 @@ <h2 id="_examples">Examples</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git grep --all-match -e NODE -e Unexpected <tt>git grep --all-match -e NODE -e Unexpected</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -882,7 +882,7 @@ <h2 id="_git">GIT</h2>
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2011-06-30 01:18:40 UTC Last updated 2011-08-05 00:04:52 UTC
</div> </div>
</div> </div>
</body> </body>
Expand Down
6 changes: 3 additions & 3 deletions git-grep.txt
Expand Up @@ -215,15 +215,15 @@ OPTIONS
Examples Examples
-------- --------


git grep {apostrophe}time_t{apostrophe} \-- {apostrophe}*.[ch]{apostrophe}:: `git grep {apostrophe}time_t{apostrophe} \-- {apostrophe}*.[ch]{apostrophe}`::
Looks for `time_t` in all tracked .c and .h files in the working Looks for `time_t` in all tracked .c and .h files in the working
directory and its subdirectories. directory and its subdirectories.


git grep -e {apostrophe}#define{apostrophe} --and \( -e MAX_PATH -e PATH_MAX \):: `git grep -e {apostrophe}#define{apostrophe} --and \( -e MAX_PATH -e PATH_MAX \)`::
Looks for a line that has `#define` and either `MAX_PATH` or Looks for a line that has `#define` and either `MAX_PATH` or
`PATH_MAX`. `PATH_MAX`.


git grep --all-match -e NODE -e Unexpected:: `git grep --all-match -e NODE -e Unexpected`::
Looks for a line that has `NODE` or `Unexpected` in Looks for a line that has `NODE` or `Unexpected` in
files that have lines that match both. files that have lines that match both.


Expand Down
18 changes: 9 additions & 9 deletions git-gui.html
Expand Up @@ -481,7 +481,7 @@ <h2 id="_examples">Examples</h2>
<div class="sectionbody"> <div class="sectionbody">
<div class="dlist"><dl> <div class="dlist"><dl>
<dt class="hdlist1"> <dt class="hdlist1">
git gui blame Makefile <tt>git gui blame Makefile</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -494,7 +494,7 @@ <h2 id="_examples">Examples</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git gui blame v0.99.8 Makefile <tt>git gui blame v0.99.8 Makefile</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -505,7 +505,7 @@ <h2 id="_examples">Examples</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git gui blame --line=100 Makefile <tt>git gui blame --line=100 Makefile</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -514,7 +514,7 @@ <h2 id="_examples">Examples</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git gui citool <tt>git gui citool</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -524,7 +524,7 @@ <h2 id="_examples">Examples</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git gui citool --amend <tt>git gui citool --amend</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -533,7 +533,7 @@ <h2 id="_examples">Examples</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git gui citool --nocommit <tt>git gui citool --nocommit</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand All @@ -544,15 +544,15 @@ <h2 id="_examples">Examples</h2>
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git citool <tt>git citool</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Same as <tt>git gui citool</tt> (above). Same as <tt>git gui citool</tt> (above).
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
git gui browser maint <tt>git gui browser maint</tt>
</dt> </dt>
<dd> <dd>
<p> <p>
Expand Down Expand Up @@ -601,7 +601,7 @@ <h2 id="_git">GIT</h2>
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2011-07-23 00:49:30 UTC Last updated 2011-08-05 00:04:52 UTC
</div> </div>
</div> </div>
</body> </body>
Expand Down

0 comments on commit 16ebcd0

Please sign in to comment.