可能重复:
How can I check whether a git repository has any commits in it?
确定存储库是否为空的最佳方法是什么?就像刚刚创建存储库一样?
答案 0 :(得分:2)
一种快捷的方法是在.git/objects
目录中查找文件。如果没有,那么你知道它必须是全新的。
$> find .git/objects -type f | wc -l # if this prints 0, then it's brand spankin' new.