1
0
Fork 0

Replaces broken Kernel.org links with git-scm links. Fixes #30

This commit is contained in:
Matthew McCullough 2012-10-01 10:24:06 -06:00
parent 7c129b0083
commit f381994ef2
1 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,7 @@ layout: zh_reference
<div class="box">
<h2>
<span class="docs">
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-remote.html">文档</a> &nbsp;
<a target="new" href="http://git-scm.com/docs/git-remote">文档</a> &nbsp;
<a target="new" href="http://progit.org/book/ch2-5.html#showing_your_remotes"></a>
</span>
<a name="remote">git remote</a>
@ -127,7 +127,7 @@ github git@github.com:schacon/hw.git (push)
<div class="box">
<h2>
<span class="docs">
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-fetch.html">文档</a> &nbsp;
<a target="new" href="http://git-scm.com/docs/git-fetch">文档</a> &nbsp;
<a target="new" href="http://progit.org/book/ch2-5.html#fetching_and_pulling_from_your_remotes"></a>
</span>
<a name="fetch">git fetch</a>
@ -138,7 +138,7 @@ github git@github.com:schacon/hw.git (push)
<h2>
<span class="docs">
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-pull.html">文档</a> &nbsp;
<a target="new" href="http://git-scm.com/docs/git-pull">文档</a> &nbsp;
<a target="new" href="http://progit.org/book/"></a>
</span>
<a name="pull">git pull</a>
@ -152,7 +152,7 @@ github git@github.com:schacon/hw.git (push)
</p>
<p>
第二个会从远端服务器提取新数据的命令是 <code>git pull</code>。基本上,该命令就是在 <code>git fetch</code> 之后紧接着 <code>git merge</code> 远端分支到您所在的任意分支。我个人不太喜欢这命令 —— 我更喜欢 <code>fetch</code><code>merge</code> 分开来做。少点魔法,少点问题。不过,如果您喜欢这主意,您可以看一下 <code>git pull</code><a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-pull.html">官方文档</a>
第二个会从远端服务器提取新数据的命令是 <code>git pull</code>。基本上,该命令就是在 <code>git fetch</code> 之后紧接着 <code>git merge</code> 远端分支到您所在的任意分支。我个人不太喜欢这命令 —— 我更喜欢 <code>fetch</code><code>merge</code> 分开来做。少点魔法,少点问题。不过,如果您喜欢这主意,您可以看一下 <code>git pull</code><a target="new" href="http://git-scm.com/docs/git-pull">官方文档</a>
</p>
<p>
@ -196,7 +196,7 @@ From github.com:schacon/hw
<div class="box">
<h2>
<span class="docs">
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-push.html">文档</a> &nbsp;
<a target="new" href="http://git-scm.com/docs/git-push">文档</a> &nbsp;
<a target="new" href="http://progit.org/book/ch2-5.html#pushing_to_your_remotes"></a>
</span>
<a name="push">git push</a>