git server 目錄架構
更新記錄
item | note |
---|---|
20150628 | 第一版 |
目錄
git init
- hooks目錄內不會使用.sample檔案
- objects目錄初始為空,除了pack,info檔案
1 | xx/git-example/hello$ git init |
add hello.txt
1 | xx/git-example/hello$ echo "hello world" > hello.txt |
- git ls-files
- git write-tree : Creates a tree object using the current index
- 請勿使用git write-tree等低皆指令(此地方為讓使用者了解架構才使用)
1 | xx/git-example/hello$ git ls-files -s |