Does the current version of git (2.30.0) already use SHA256 to calculate commit hashes by default?
If not, how can SHA-256 be enabled for a new git repository and how can be checked whether a certain git repository uses SHA-256 or SHA-1 for its commit hashes?
Whether to use SHA-1 or SHA-256 is a per-repository setting in recent versions of Git. The plan is eventually to make it possible to store data in a repository in SHA-256 and access the objects with either the SHA-1 name or the SHA-256 name. As of 2024, SHA-1 remains the default.
SHA-256 mode used to be considered experimental, but that is no longer the case (source).
Historically, we warned that SHA-256 repositories may later need backward incompatible changes when we introduce such interoperability features. Today, we only expect compatible changes. Furthermore, if such changes prove to be necessary, it can be expected that SHA-256 repositories created with today's Git will be usable by future versions of Git without data loss.
To create a new repository with SHA-256, use the --object-format
option to git init
. If you want to know which algorithm a local repository uses, run git rev-parse --show-object-format
, which will output either sha1
or sha256
. To see the hash of a remote repository, you can use git ls-remote
and verify the length of the hashes printed.
Do note that few major forges support SHA-256 and therefore such repositories cannot be uploaded to them.