如何确定git存储库是否为空

时间:2012-01-16 00:06:57

标签: git

  

可能重复:
  How can I check whether a git repository has any commits in it?

确定存储库是否为空的最佳方法是什么?就像刚刚创建存储库一样?

1 个答案:

答案 0 :(得分:2)

一种快捷的方法是在.git/objects目录中查找文件。如果没有,那么你知道它必须是全新的。

$> find .git/objects -type f | wc -l # if this prints 0, then it's brand spankin' new.