目的

学习如何创建仓库的拷贝。

转到工作目录

转到工作目录并创建 hello 仓库的克隆。

  1. $ cd ..
  2. $ pwd
  3. $ ls

注意:现在在工作目录中。

  1. $ cd ..
  2. $ pwd
  3. /Users/jim/working/git/git_immersion/auto
  4. $ ls
  5. hello

此刻你应当在你的工作目录,且有名为“hello”的单一仓库。

创建 hello 仓库的克隆

让我们创建仓库的克隆。

  1. $ git clone hello cloned_hello
  2. $ ls
  1. $ git clone hello cloned_hello
  2. Cloning into cloned_hello...
  3. done.
  4. $ ls
  5. cloned_hello
  6. hello

在你的工作目录中现在应当有两个仓库:原始的“hello”仓库 和新克隆的“cloned_hello”仓库。