| OLD | NEW |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" |
| 2 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | 2 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
| 3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | 3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> |
| 4 <head> | 4 <head> |
| 5 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" /
> | 5 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" /
> |
| 6 <meta name="generator" content="AsciiDoc 8.6.9" /> | 6 <meta name="generator" content="AsciiDoc 8.6.9" /> |
| 7 <title>depot_tools_tutorial(7)</title> | 7 <title>depot_tools_tutorial(7)</title> |
| 8 <style type="text/css"> | 8 <style type="text/css"> |
| 9 /* Shared CSS for AsciiDoc xhtml11 and html5 backends */ | 9 /* Shared CSS for AsciiDoc xhtml11 and html5 backends */ |
| 10 | 10 |
| (...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 </ul></div> | 802 </ul></div> |
| 803 <div class="paragraph"><p>Please refer to the manpages (or <code>--help</code> o
utput) for details about any of the | 803 <div class="paragraph"><p>Please refer to the manpages (or <code>--help</code> o
utput) for details about any of the |
| 804 commands mentioned in this tutorial.</p></div> | 804 commands mentioned in this tutorial.</p></div> |
| 805 <div class="admonitionblock"> | 805 <div class="admonitionblock"> |
| 806 <table><tr> | 806 <table><tr> |
| 807 <td class="icon"> | 807 <td class="icon"> |
| 808 <div class="title">Note</div> | 808 <div class="title">Note</div> |
| 809 </td> | 809 </td> |
| 810 <td class="content">If your platform does not support manpages (or you prefer so
mething a bit more | 810 <td class="content">If your platform does not support manpages (or you prefer so
mething a bit more |
| 811 expressive than plain text) you can find all documentation in <em>html</em> form
in the | 811 expressive than plain text) you can find all documentation in <em>html</em> form
in the |
| 812 <code>[DEPOT_TOOLS]/docs/html</code> folder.</td> | 812 <code>[DEPOT_TOOLS]/man/html</code> folder.</td> |
| 813 </tr></table> | 813 </tr></table> |
| 814 </div> | 814 </div> |
| 815 <div class="sect2"> | 815 <div class="sect2"> |
| 816 <h3 id="_prerequisites">PREREQUISITES</h3> | 816 <h3 id="_prerequisites">PREREQUISITES</h3> |
| 817 <div class="paragraph"><p>This tutorial assumes basic familiarity with git termi
nology and concepts. If you | 817 <div class="paragraph"><p>This tutorial assumes basic familiarity with git termi
nology and concepts. If you |
| 818 need to brush up on these, the following are very good resources:</p></div> | 818 need to brush up on these, the following are very good resources:</p></div> |
| 819 <div class="ulist"><ul> | 819 <div class="ulist"><ul> |
| 820 <li> | 820 <li> |
| 821 <p> | 821 <p> |
| 822 <a href="http://think-like-a-git.net/">Think like (a) Git</a> - A lighthearted | 822 <a href="http://think-like-a-git.net/">Think like (a) Git</a> - A lighthearted |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 868 <div class="sectionbody"> | 868 <div class="sectionbody"> |
| 869 <div class="sect2"> | 869 <div class="sect2"> |
| 870 <h3 id="_get_depot_tools">GET DEPOT TOOLS</h3> | 870 <h3 id="_get_depot_tools">GET DEPOT TOOLS</h3> |
| 871 <div class="sect3"> | 871 <div class="sect3"> |
| 872 <h4 id="_linux_mac">LINUX / MAC</h4> | 872 <h4 id="_linux_mac">LINUX / MAC</h4> |
| 873 <div class="paragraph"><p>Clone the <em>depot_tools</em> repository:</p></div> | 873 <div class="paragraph"><p>Clone the <em>depot_tools</em> repository:</p></div> |
| 874 <div class="listingblock"> | 874 <div class="listingblock"> |
| 875 <div class="content"> | 875 <div class="content"> |
| 876 <pre><code><strong><span class="white">$ git clone https://chromium.googlesource
.com/chromium/tools/depot_tools</span></strong></code></pre> | 876 <pre><code><strong><span class="white">$ git clone https://chromium.googlesource
.com/chromium/tools/depot_tools</span></strong></code></pre> |
| 877 </div></div> | 877 </div></div> |
| 878 <div class="paragraph"><p>Add <em>depot_tools</em> to the <em>end</em> of your P
ATH and MANPATH (you will probably want | 878 <div class="paragraph"><p>Add <em>depot_tools</em> to the <em>end</em> of your P
ATH (you will probably want to put this |
| 879 to put this in your <code>~/.bashrc</code> or <code>~/.zshrc</code>). Assuming y
ou cloned | 879 in your <code>~/.bashrc</code> or <code>~/.zshrc</code>). Assuming you cloned <e
m>depot_tools</em> to |
| 880 <em>depot_tools</em> to <code>/path/to/depot_tools</code>:</p></div> | 880 <code>/path/to/depot_tools</code>:</p></div> |
| 881 <div class="listingblock"> | 881 <div class="listingblock"> |
| 882 <div class="content"> | 882 <div class="content"> |
| 883 <pre><code><strong><span class="white">$ export PATH=$PATH:/path/to/depot_tools<
/span></strong> | 883 <pre><code><strong><span class="white">$ export PATH=$PATH:/path/to/depot_tools<
/span></strong></code></pre> |
| 884 <strong><span class="white">$ export MANPATH=$MANPATH:/path/to/depot_tools/docs<
/span></strong> <b><1></b></code></pre> | |
| 885 </div></div> | 884 </div></div> |
| 886 <div class="colist arabic"><ol> | |
| 887 <li> | |
| 888 <p> | |
| 889 Observe that this path is <code>depot_tools/</code><strong><code>docs</code></st
rong>. | |
| 890 </p> | |
| 891 </li> | |
| 892 </ol></div> | |
| 893 </div> | 885 </div> |
| 894 <div class="sect3"> | 886 <div class="sect3"> |
| 895 <h4 id="_windows">WINDOWS</h4> | 887 <h4 id="_windows">WINDOWS</h4> |
| 896 <div class="paragraph"><p>Download the <em>depot_tools</em> | 888 <div class="paragraph"><p>Download the <em>depot_tools</em> |
| 897 <a href="https://src.chromium.org/svn/trunk/tools/depot_tools.zip">bundle</a> an
d | 889 <a href="https://src.chromium.org/svn/trunk/tools/depot_tools.zip">bundle</a> an
d |
| 898 extract it somewhere.</p></div> | 890 extract it somewhere.</p></div> |
| 899 <div class="admonitionblock"> | 891 <div class="admonitionblock"> |
| 900 <table><tr> | 892 <table><tr> |
| 901 <td class="icon"> | 893 <td class="icon"> |
| 902 <div class="title">Warning</div> | 894 <div class="title">Warning</div> |
| (...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1580 <div class="sectionbody"> | 1572 <div class="sectionbody"> |
| 1581 <div class="paragraph"><p>Part of the chromium <a href="depot_tools.html">depot_
tools(7)</a> suite. These tools are meant to | 1573 <div class="paragraph"><p>Part of the chromium <a href="depot_tools.html">depot_
tools(7)</a> suite. These tools are meant to |
| 1582 assist with the development of chromium and related projects. Download the tools | 1574 assist with the development of chromium and related projects. Download the tools |
| 1583 from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools.git">
here</a>.</p></div> | 1575 from <a href="https://chromium.googlesource.com/chromium/tools/depot_tools.git">
here</a>.</p></div> |
| 1584 </div> | 1576 </div> |
| 1585 </div> | 1577 </div> |
| 1586 </div> | 1578 </div> |
| 1587 <div id="footnotes"><hr /></div> | 1579 <div id="footnotes"><hr /></div> |
| 1588 <div id="footer"> | 1580 <div id="footer"> |
| 1589 <div id="footer-text"> | 1581 <div id="footer-text"> |
| 1590 Last updated 2014-04-14 16:26:14 PDT | 1582 Last updated 2014-04-28 13:55:43 PDT |
| 1591 </div> | 1583 </div> |
| 1592 </div> | 1584 </div> |
| 1593 </body> | 1585 </body> |
| 1594 </html> | 1586 </html> |
| OLD | NEW |