目的学习如何创建裸仓库。裸仓库(没有工作目录)通常用于共享。创建裸仓库$ 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结尾带 .
目的学习如何将更改推到远程仓库。因为裸仓库通常共享在某种网络服务器上,所以一般很难转到仓库中并拉下更改。因此,我们需要将更改推到其它的仓库中。让我们通过创建更改来开始推送。编辑 README 并提交它。This is the Hello World example from the git tutorial.