张炳连 發表於 2022-5-1 22:17:00

Git系列教程 Git 远程仓库(Github)之七

<svg xmlns="http://www.w3.org/2000/svg" style="display: none">
                        <path stroke-linecap="round" d="M5,0 0,2.5 5,5z" id="raphael-marker-block" style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0)"></path>
                  </svg>
                  <h3>Git 远程仓库(Github)</h3>
<p>Git 并不像 SVN 那样有个中心服务器。</p>
<p>目前我们使用到的 Git 命令都是在本地执行,如果你想通过 Git 分享你的代码或者与其他开发人员合作。 你就需要将数据放到一台其他开发人员能够连接的服务器上。</p>
<h4>添加远程库</h4>
<p>要添加一个新的远程仓库,可以指定一个简单的名字,以便将来引用,命令格式如下:</p>
<pre><code>git remote add
</code></pre>
<p>本例以 Github 为例作为远程仓库,如果你没有 Github 可以在官网 https://github.com/注册。</p>
<p>由于你的本地 Git 仓库和 GitHub 仓库之间的传输是通过SSH加密的,所以我们需要配置验证信息:</p>
<p>使用以下命令生成 SSH Key:</p>
<pre><code>$ ssh-keygen -t rsa -C "youremail@example.com"
</code></pre>
<p>后面的 <strong>your_email@youremail.com</strong> 改为你在 Github 上注册的邮箱,之后会要求确认路径和输入密码,我们这使用默认的一路回车就行。</p>
<p>成功的话会在 <strong>~/</strong> 下生成 <strong>.ssh</strong> 文件夹,进去,打开 <strong>id_rsa.pub</strong>,复制里面的 <strong>key</strong>。</p>
<pre><code>$ ssh-keygen -t rsa -C "429240967@qq.com"
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/tianqixin/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):    # 直接回车
Enter same passphrase again:                   # 直接回车
Your identification has been saved in /Users/tianqixin/.ssh/id_rsa.
Your public key has been saved in /Users/tianqixin/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:MDKVidPTDXIQoJwoqUmI4LBAsg5XByBlrOEzkxrwARI 429240967@qq.com
The key's randomart image is:
+-------+
|E*+.+=**oo       |
|%Oo+oo=o. .      |
|%**.o.o.         |
|OO.o o         |
|+o+   S      |
|.                |
|               |
|               |
|               |
+---------+
</code></pre>
<p>回到 github 上,进入 Account =&gt; Settings(账户配置)。</p>
<p><img src="https://img-blog.csdnimg.cn/img_convert/357c1b1642416c9fd8c42bc31cf3d46d.png"></p>
<p>左边选择 <strong>SSH and GPG keys</strong>,然后点击 <strong>New SSH key</strong> 按钮,title 设置标题,可以随便填,粘贴在你电脑上生成的 key。</p>
<p><img src="https://img-blog.csdnimg.cn/img_convert/659757176c887af5208001b99cbdd2d8.png"></p>
<p><img src="https://img-blog.csdnimg.cn/img_convert/a6127c14bc3afe8f58cca367f86234cc.png"></p>
<p>添加成功后界面如下所示</p>
<p><img src="https://img-blog.csdnimg.cn/img_convert/6dcf02af1f11c953d4349b0fa33d1a00.png"></p>
<p>为了验证是否成功,输入以下命令:</p>
<pre><code>$ ssh -T git@github.com
The authenticity of host 'github.com (52.74.223.119)' can't be established.
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no/)? yes                   # 输入 yes
Warning: Permanently added 'github.com,52.74.223.119' (RSA) to the list of known hosts.
Hi tianqixin! You've successfully authenticated, but GitHub does not provide shell access. # 成功信息
</code></pre>
<p>以下命令说明我们已成功连上 Github。</p>
<p>之后登录后点击" New repository " 如下图所示:</p>
<p><img src="https://img-blog.csdnimg.cn/img_convert/e374400480580a3b2c94e4f73369cd8c.png"></p>
<p>之后在在Repository name 填入 runoob-git-test(远程仓库名) ,其他保持默认设置,点击"Create repository"按钮,就成功地创建了一个新的Git仓库:</p>
<p><img src="https://img-blog.csdnimg.cn/img_convert/6459f55884ad0bbce52f870c1aec696b.png"></p>
<p>创建成功后,显示如下信息:</p>
<p><img src="https://img-blog.csdnimg.cn/img_convert/044314a6e37822148a84b59b9b957454.png"></p>
<p>以上信息告诉我们可以从这个仓库克隆出新的仓库,也可以把本地仓库的内容推送到GitHub仓库。</p>
<p>现在,我们根据 GitHub 的提示,在本地的仓库下运行命令:</p>
<pre><code>$ mkdir runoob-git-test                     # 创建测试目录
$ cd runoob-git-test/                     # 进入测试目录
$ echo "# 菜鸟教程 Git 测试" &gt;&gt; README.md   # 创建 README.md 文件并写入内容
$ ls                                        # 查看目录下的文件
README
$ git init                                  # 初始化
$ git add README.md                         # 添加文件
$ git commit -m "添加 README.md 文件"      # 提交并备注信息
添加 README.md 文件
1 file changed, 1 insertion(+)
create mode 100644 README.md

# 提交到 Github
$ git remote add origin git@github.com:tianqixin/runoob-git-test.git
$ git push -u origin master
</code></pre>
<p>以下命令请根据你在Github成功创建新仓库的地方复制,而不是根据我提供的命令,因为我们的Github用户名不一样,仓库名也不一样。</p>
<p>接下来我们返回 Github 创建的仓库,就可以看到文件已上传到 Github上:</p>
<p><img src="https://img-blog.csdnimg.cn/img_convert/d74ba9a26e10c1c92d1baf170dce86ba.png"></p>
<hr>
<h4>查看当前的远程库</h4>
<p>要查看当前配置有哪些远程仓库,可以用命令:</p>
<pre><code>git remote
</code></pre>
<pre><code>$ git remote
origin
$ git remote -v
origin    git@github.com:tianqixin/runoob-git-test.git (fetch)
origin    git@github.com:tianqixin/runoob-git-test.git (push)
</code></pre>
<p>执行时加上 -v 参数,你还可以看到每个别名的实际链接地址。</p>
<hr>
<h4>提取远程仓库</h4>
<p>Git 有两个命令用来提取远程仓库的更新。</p>
<p>1、从远程仓库下载新分支与数据:</p>
<pre><code>git fetch
</code></pre>
<p>该命令执行完后需要执行 git merge 远程分支到你所在的分支。</p>
<p>2、从远端仓库提取数据并尝试合并到当前分支:</p>
<pre><code>git merge
</code></pre>
<p>该命令就是在执行 <strong>git fetch</strong> 之后紧接着执行 <strong>git merge</strong> 远程分支到你所在的任意分支。</p>
<p><img src="https://img-blog.csdnimg.cn/img_convert/dfe4838853842b32ebba2edc35af46f4.png"></p>
<p>假设你配置好了一个远程仓库,并且你想要提取更新的数据,你可以首先执行 <strong>git fetch </strong> 告诉 Git 去获取它有你没有的数据,然后你可以执行 <strong>git merge /</strong> 以将服务器上的任何更新(假设有人这时候推送到服务器了)合并到你的当前分支。</p>
<p>接下来我们在 Github 上点击" README.md" 并在线修改它:</p>
<p><img src="https://img-blog.csdnimg.cn/img_convert/d113df82bdfe0ceaf7e8402731bef3b4.png"></p>
<p>然后我们在本地更新修改。</p>
<pre><code>$ git fetch origin
remote: Counting objects: 3, done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), done.
From github.com:tianqixin/runoob-git-test
   0205aab..febd8edmaster   -&gt; origin/master
</code></pre>
<p>以上信息"0205aab…febd8ed master -&gt; origin/master" 说明 master 分支已被更新,我们可以使用以下命令将更新同步到本地:</p>
<pre><code>$ git merge origin/master
Updating 0205aab..febd8ed
Fast-forward
README.md | 1 +
1 file changed, 1 insertion(+)
</code></pre>
<p>查看 README.md 文件内容:</p>
<pre><code>$ cat README.md
# 菜鸟教程 Git 测试
## 第一次修改内容
</code></pre>
<hr>
<h4>推送到远程仓库</h4>
<p>推送你的新分支与数据到某个远端仓库命令:</p>
<pre><code>git push
</code></pre>
<p>以上命令将你的 分支推送成为 远程仓库上的 分支,实例如下。</p>
<pre><code>$ touch runoob-test.txt      # 添加文件
$ git add runoob-test.txt
$ git commit -m "添加到远程"
master 69e702d] 添加到远程
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 runoob-test.txt

$ git push origin master    # 推送到 Github
</code></pre>
<p>重新回到我们的 Github 仓库,可以看到文件已经提交上来了:</p>
<p><img src="https://img-blog.csdnimg.cn/img_convert/be8289f48fe950df50debd0e42fa3320.png"></p>
<hr>
<h4>删除远程仓库</h4>
<p>删除远程仓库你可以使用命令:</p>
<pre><code>git remote rm [别名]
</code></pre>
<pre><code>$ git remote -v
origin    git@github.com:tianqixin/runoob-git-test.git (fetch)
origin    git@github.com:tianqixin/runoob-git-test.git (push)

# 添加仓库 origin2
$ git remote add origin2 git@github.com:tianqixin/runoob-git-test.git

$ git remote -v
origin    git@github.com:tianqixin/runoob-git-test.git (fetch)
origin    git@github.com:tianqixin/runoob-git-test.git (push)
origin2    git@github.com:tianqixin/runoob-git-test.git (fetch)
origin2    git@github.com:tianqixin/runoob-git-test.git (push)

# 删除仓库 origin2
$ git remote rm origin2
$ git remote -v
origin    git@github.com:tianqixin/runoob-git-test.git (fetch)
origin    git@github.com:tianqixin/runoob-git-test.git (push)
</code></pre><br><br>
来源:https://www.cnblogs.com/isuning/p/16214435.html
頁: [1]
查看完整版本: Git系列教程 Git 远程仓库(Github)之七