What happens when GIT runs out of hash values for your Revisions?
Not that it would happen anytime soon, but theoretically it is possible.
What happens when GIT runs out of hash values for your Revisions?
Not that it would happen anytime soon, but theoretically it is possible.
According to the Git's Documentation
"If you do happen to commit an object that hashes to the same SHA-1 value as a previous object in your repository, Git will see the previous object already in your Git database and assume it was already written. If you try to check out that object again at some point, you’ll always get the data of the first object."
I think this will help you understand better Probability of SHA1 collisions
I think you'd run out of space in the real world ;-)