コマンド
# bare リポジトリとしてクローン git clone --bare <repository>
実践
$ # bare リポジトリとして bare リポジトリをクローン $ git clone --bare ssh://user1@example.com/gitbare/project.git Cloning into bare repository 'project.git'... user1@example.com's password: remote: Counting objects: 716, done. remote: Compressing objects: 100% (592/592), done. remote: Total 716 (delta 276), reused 436 (delta 113) Receiving objects: 100% (716/716), 3.01MiB | 939.00 KiB/s, done. Resolving details: 100% (276/276), donegal Checking connectivity... done. $ $ # 確認 $ ll ... 略 ... drwxr-xr-x 1 user1 197121 0 8月 5 13:52 project.git/ ... 略 ... $
おわりに
次のページが参考になりました!ありがとう存じます♪
以上です。