1
0
This commit is contained in:
CzBiX
2012-02-19 23:17:00 +08:00
parent e1d7000be0
commit 5d4495f013
6 changed files with 36 additions and 36 deletions

View File

@@ -23,7 +23,7 @@ layout: zh_reference
</p>
<p class="nutshell">
<b>一言以蔽</b> 使用 <code>git fetch</code> 更新您的项目,使用 <code>git push</code> 分享您的改动。您可以用 <code>git remote</code> 管理您的远程仓库。
<b>简而言</b> 使用 <code>git fetch</code> 更新您的项目,使用 <code>git push</code> 分享您的改动。您可以用 <code>git remote</code> 管理您的远程仓库。
</p>
</div>
</div>
@@ -118,7 +118,7 @@ github git@github.com:schacon/hw.git (push)
</pre>
<p class="nutshell">
<b>一言以蔽</b> 您可以用 <code>git remote</code> 列出您的远端仓库和那些仓库的链接。您可以使用 <code>git remote add</code> 添加新的远端仓库,用 <code>git remote rm</code> 删掉已存在的那些。
<b>简而言</b> 您可以用 <code>git remote</code> 列出您的远端仓库和那些仓库的链接。您可以使用 <code>git remote add</code> 添加新的远端仓库,用 <code>git remote rm</code> 删掉已存在的那些。
</p>
</div>
@@ -186,7 +186,7 @@ From github.com:schacon/hw
</p>
<p class="nutshell">
<b>一言以蔽</b> 执行 <code>git fetch [alias]</code> 来将您的仓库与远端仓库同步,提取所有它独有的数据到本地分支以合并或者怎样。
<b>简而言</b> 执行 <code>git fetch [alias]</code> 来将您的仓库与远端仓库同步,提取所有它独有的数据到本地分支以合并或者怎样。
</p>
</div>
@@ -265,7 +265,7 @@ fast-forwards' section of 'git push --help' for details.
</p>
<p class="nutshell">
<b>一言以蔽</b> 执行 <code>git push [alias] [branch]</code> 将您的本地改动推送到远端仓库。如果可以的话,它会依据您的 [branch] 的样子,推送到远端的 [branch] 去。如果在您上次提取、合并之后另有人推送了Git 服务器会拒绝您的推送,知道您是最新的为止。
<b>简而言</b> 执行 <code>git push [alias] [branch]</code> 将您的本地改动推送到远端仓库。如果可以的话,它会依据您的 [branch] 的样子,推送到远端的 [branch] 去。如果在您上次提取、合并之后另有人推送了Git 服务器会拒绝您的推送,知道您是最新的为止。
</p>
</div>