Git tracks files, not directories,我们cannot currently add
empty directories(standard trick不添加空目录,而是添加文件,另请参阅FAQ)。
然而,git repo
可能包含一个空目录。那么我会克隆一个repo或签出一个包含空目录的分支会发生什么?它是在工作树中创建的吗?
答案 0 :(得分:15)
要使用空目录设置测试存储库,可以使用以下脚本(在临时目录中运行)。
但是,当签出时,将忽略空目录。在这里,Git只适用于文件,而不是目录,即使后者存在。
#!/bin/bash
set -e
echo ---- initialize the repo...
#rm -rf .git
git init
echo ---- create an empty tree object...
empty_tree=$(git mktree < /dev/null)
echo ---- create a parent tree containing the empty subtree...
root_tree_ls=$(echo -e 040000 tree $empty_tree\\tvacuum)
root_tree=$(echo "$root_tree_ls" | git mktree)
echo ---- commit...
commit_msg="This commit contains an empty directory"
commit=$(git commit-tree $root_tree -m "$commit_msg")
echo ---- create a branch...
git branch master $commit
# output the ids:
echo ----------------------------------------------------
echo "empty tree:" $empty_tree
echo "root tree: " $root_tree
echo "commit: " $commit