2

Possible Duplicate:
How can I check whether a git repository has any commits in it?

Which is the best way to determine if repository is empty, like after it is just created?

0

1 Answer 1

4

One quick way would be to look for files in the .git/objects directory. If there are none present then you know it must be brand new.

$> find .git/objects -type f | wc -l # if this prints 0, then it's brand spankin' new.
1
  • Does not quite work: rather count the number of commits
    – Gabriel
    Sep 11, 2019 at 10:46

Not the answer you're looking for? Browse other questions tagged or ask your own question.