Git学习记录07

目录

[toc]

chapter(七)

7.1 Github创建远程仓库

有了Github账号后,我们就可以免费的创建一个远程仓库。 光说不练,假把式,直接开始干吧! 进入Github网站,寻找New Repository,点进去,这个是创建新仓库的意思。 进去后,如下图: figure7.1-创建仓库

  1. 在1处输入仓库名字
  2. 在2处输入仓库描述
  3. 在3处选择Add a README file
  4. 在4处选择创建仓库

这时你的仓库就建立好了,而且Github为我们建立好了一个README.md文件。

有了远程仓库,我们就可以把他克隆到本地仓库中,具体操作:

  1. 先到这到这里,点ssh,然后把这个链接复制 figure7.2-创建仓库

  2. 到本地电脑中,使用git clone克隆到本地库

    toto@pc:~/code/testGit$ git clone git@github.com:StudyWithoutStress/StudyGit.git
    Cloning into 'StudyGit'...
    remote: Enumerating objects: 3, done.
    remote: Counting objects: 100% (3/3), done.
    remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
    Receiving objects: 100% (3/3), done.
    toto@pc:~/code/testGit$ ls
    helloword.cpp  README.txt  StudyGit
    toto@pc:~/code/testGit$ cd StudyGit
    toto@pc:~/code/testGit/StudyGit$ ls
    README.md
    toto@pc:~/code/testGit/StudyGit$ ls -ah
    .  ..  .git  README.md
    toto@pc:~/code/testGit/StudyGit$ 
    

    看到没。本地仓库已经把远程仓库克隆进来了。

7.2 总结

  1. 在Github网站建立远程仓库
  2. 使用git clone <链接>可以将远程仓库克隆到本地仓库。

请我喝咖啡

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码支持
扫码打赏,您说多少就多少

打开支付宝或微信扫一扫,即可请我喝咖啡哦