Git 學習手冊#3 初始化:Create an empty Repository
今天我們就來開始初始化 git 代碼倉庫,一般來說,我們只有在專案的一開始,才會建立一個新的 git 資料。
■ git init 初始化代碼倉庫
◆ git init
我們先來初始化,建立一個 git 倉庫。
1 |
git init testgit |
建立完成之後,會產生一個 .git 的資料夾
◆ .git/config
我們可以透過 find 指令,來查看所有的檔案結構。
1 2 3 |
cd testgit find ./ |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
./ .//.git .//.git/config .//.git/objects .//.git/objects/pack .//.git/objects/info .//.git/HEAD .//.git/info .//.git/info/exclude .//.git/description .//.git/hooks .//.git/hooks/commit-msg.sample .//.git/hooks/pre-rebase.sample .//.git/hooks/pre-commit.sample .//.git/hooks/applypatch-msg.sample .//.git/hooks/fsmonitor-watchman.sample .//.git/hooks/pre-receive.sample .//.git/hooks/prepare-commit-msg.sample .//.git/hooks/post-update.sample .//.git/hooks/pre-applypatch.sample .//.git/hooks/pre-push.sample .//.git/hooks/update.sample .//.git/refs .//.git/refs/heads .//.git/refs/tags .//.git/branches |
到這邊,我們的初始化就已經成功了,下一篇來講「狀態提交與日誌: Repository Change」。
作者: Gimmy
積極的人在每一次憂患中都看到一個機會
而消極的人則在每個機會都看到某種憂患