How to check if the commit exists in a Git repository by its SHA-1

You can just run git cat-file -t $sha and check it returns “commit”. You are right, you don’t need to actually print the actual object for that…

I’m not 100% sure that what goes on behind the scene is more efficient, though.

test $(git cat-file -t $sha) == commit

Leave a Comment