章節 46 無工作目錄副本的檔案庫

學習目標

無工作目錄副本的檔案庫通常用來作為共享檔案庫。

建立一個無工作目錄副本的檔案庫。 01

執行:

cd ..
git clone --bare hello hello.git
ls hello.git

注意: 現在位於工作目錄

輸出:

$ git clone --bare hello hello.git
Cloning into bare repository 'hello.git'...
done.
$ ls hello.git
HEAD
config
description
hooks
info
objects
packed-refs
refs

無工作目錄副本的檔案庫命名慣例是以 .git 結尾。 我們可以看到在 hello.git 檔案庫中沒有工作目錄。 事實上,無工作目錄副本的檔案庫內容其實就是一般檔案庫中 .git 目錄的內容。

目錄