目的学习如何创建裸仓库。裸仓库(没有工作目录)通常用于共享。创建裸仓库$ cd ..$ git clone --bare hello hello.git$ ls hello.git注意:现在在工作目录中。$ git clone --bare hello hello.gitCloning into bare repository hello.git...done.$ ls hello.gitHEADconfigdescriptionhooksinfoobjectspacked-refsrefs结尾带 .
目的对原始仓库做些更改以便我们可以尝试拉下更改。在原始的 hello 仓库中做更改$ cd ../hello# (You should be in the original hello repository now)注意:现在在 hello 仓库中。对 README 做下列更改:This is the Hello World example from the git tutorial.(changed in original)现在添加并提交此更改。