Git 克隆操作
Posted kluan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 克隆操作相关的知识,希望对你有一定的参考价值。
我们有一个裸库Git服务器,Tom 也推了他的第一个版本。现在,Jerry 可以查看他的变化。克隆操作的远程存储库创建实例。
Jerry 在他的home目录,并创建新的目录,执行克隆操作。
[[email protected] ~]$ mkdir jerry_repo
[[email protected] ~]$ cd jerry_repo/
[[email protected] jerry_repo]$ git clone [email protected]:project.git
上面的命令会产生以下结果。
Initialized empty Git repository in /home/jerry/jerry_repo/project/.git/ remote: Counting objects: 3, done. Receiving objects: 100% (3/3), 241 bytes, done. remote: Total 3 (delta 0), reused 0 (delta 0)
Jerry 改变目录到新的本地存储库,并列出目录内容。
[[email protected] jerry_repo]$ cd project/
[[email protected] jerry_repo]$ ls README
PS:如果您想和业内技术大牛交流的话,请加qq群(521249302)或者关注微信公众 号(AskHarries),谢谢!
以上是关于Git 克隆操作的主要内容,如果未能解决你的问题,请参考以下文章