目的

学习如何创建裸仓库。

裸仓库(没有工作目录)通常用于共享。

创建裸仓库

  1. $ cd ..
  2. $ git clone --bare hello hello.git
  3. $ ls hello.git

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

  1. $ git clone --bare hello hello.git
  2. Cloning into bare repository hello.git...
  3. done.
  4. $ ls hello.git
  5. HEAD
  6. config
  7. description
  8. hooks
  9. info
  10. objects
  11. packed-refs
  12. refs

结尾带 .git 的仓库习惯约定是裸仓库。我们可以看到在 hello.git 仓库中没有工作目录。实际上,除了非裸仓库的 .git 目录外什么也没有。