1
0
Fork 0

updated the bottom links, added stubs for next two sections

This commit is contained in:
Scott Chacon 2010-06-04 18:28:54 +02:00
parent d5b2569426
commit 7261edd304
5 changed files with 119 additions and 8 deletions

View File

@ -67,19 +67,20 @@
<div class="block">
<h3><a href="/remotes">Sharing and Updating Projects</a></h3>
<ul>
<li><a href="/remotes/fetch-pull.html">fetch, pull</a></li>
<li><a href="/remotes/push.html">push</a></li>
<li><a href="/remotes/#fetch">fetch, pull</a></li>
<li><a href="/remotes/#push">push</a></li>
</ul>
</div>
<div class="block">
<h3><a href="/inspect">Inspection and Comparison</a></h3>
<ul>
<li><a href="/inspect/log.html">log</a></li>
<li><a href="/inspect/diff.html">diff</a></li>
<li><a href="/inspect/#log">log</a></li>
<li><a href="/inspect/#diff">diff</a></li>
</ul>
</div>
<!--
<div class="block">
<h3><a href="/fixing">Fixing and Changing History</a></h3>
<ul>
@ -90,7 +91,7 @@
<li><a href="/fixing/cherry-pick.html">cherry-pick</a></li>
</ul>
</div>
-->
</div>
<div class="grid_10 home_box" id="content_box">

View File

@ -634,7 +634,7 @@ M hello.rb
<span class="red">M</span> hello.rb
</pre>
<p>Now you can run a <code>git commit</span> which will just record
<p>Now you can run a <code>git commit</code> which will just record
the changes to the <code>README</code> file, not the now unstaged
<code>hello.rb</code>.
</p>
@ -735,5 +735,5 @@ M hello.rb
</div>
</div>
<p><a href="/basic">On to Branching and Merging &#187;</a></p>
<p><a href="/branching">On to Branching and Merging &#187;</a></p>

View File

@ -690,5 +690,5 @@ ab5ab4c added erlang
</div>
</div>
<p><a href="/basic">On to Sharing and Updating Projects &#187;</a></p>
<p><a href="/remotes">On to Sharing and Updating Projects &#187;</a></p>

50
inspect/index.html Normal file
View File

@ -0,0 +1,50 @@
---
layout: reference
---
<div class="box">
<h2>
<span class="docs">
<a target="new" href="http://progit.org/book">book</a>
</span>
Inspection and Comparison
</h2>
<div class="block">
<p class="nutshell">
<b>In a nutshell</b> blah.
</p>
</div>
</div>
<div class="box">
<h2>
<span class="docs">
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-log.html">docs</a> &nbsp;
<a target="new" href="http://progit.org/book/">book</a>
</span>
<a name="log">git log</a>
<span class="desc"></span>
</h2>
<div class="block">
<p>Cool.</p>
</div>
</div>
<div class="box">
<h2>
<span class="docs">
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-diff.html">docs</a> &nbsp;
<a target="new" href="http://progit.org/book/">book</a>
</span>
<a name="diff">git diff</a>
<span class="desc"></span>
</h2>
<div class="block">
<p>Cool.</p>
</div>
</div>
<p>And that's it! For more information, try reading the
<a href="http://progit.org">Pro Git book</a>.</p>

60
remotes/index.html Normal file
View File

@ -0,0 +1,60 @@
---
layout: reference
---
<div class="box">
<h2>
<span class="docs">
<a target="new" href="http://progit.org/book">book</a>
</span>
Sharing and Updating Projects
</h2>
<div class="block">
<p class="nutshell">
<b>In a nutshell</b> you can update your project with <code>git fetch</code>
and share your changes with <code>git push</code>.
</p>
</div>
</div>
<div class="box">
<h2>
<span class="docs">
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-fetch.html">docs</a> &nbsp;
<a target="new" href="http://progit.org/book/">book</a>
</span>
<a name="fetch">git fetch</a>
<span class="desc">download new branches and data from a remote repository</span>
</h2>
<br/>
<h2>
<span class="docs">
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-pull.html">docs</a> &nbsp;
<a target="new" href="http://progit.org/book/">book</a>
</span>
<a name="pull">git pull</a>
<span class="desc">fetch from a remote repo and try to merge into the current branch</span>
</h2>
<div class="block">
<p>Cool.</p>
</div>
</div>
<div class="box">
<h2>
<span class="docs">
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-push.html">docs</a> &nbsp;
<a target="new" href="http://progit.org/book/">book</a>
</span>
<a name="push">git push</a>
<span class="desc">push your new branches and data to a remote repository</span>
</h2>
<div class="block">
<p>Cool.</p>
</div>
</div>
<p><a href="/inspect">On to Inspection and Comparison &#187;</a></p>