In certain circumstances, you may want to retrieve a file in git by some short identifier.

For example, you have some relevant file which is useful in reproducing a computation, say for debugging or regression testing. Or, for compliance, you might want to record and easily retrieve which version of a contract template a user saw, but have the version field only change when the contents of the html file changes. (And not when unrelated files change as with a commit hash.)

One simple way to achieve this is to use the Git object hash. This is the hash of file contents that git uses to store the underlying file.

Now let’s create an empty git repository, with one file foo with contents foo\n:

!git init
Initialized empty Git repository in /private/var/folders/0x/v2lbxd814bv46ngy5zhtsf700000gn/T/tmppll0ayzo/.git/
!echo foo > foo
!git add .
!git commit -m 'init'
[master (root-commit) cd0d56c] init
 1 file changed, 1 insertion(+)
 create mode 100644 foo

How are these files stored internally in Git? The files are content-addressable by the object hash. We can compute the object hash using the git-hash-object command:

!cat foo | git hash-object -w --stdin
257cc5642cb1a054f08cc83f2d943e56fd3ebe99

We can then retrieve the contents in a single command with only that hash using git-cat-file:

!git cat-file -p 257cc5642cb1a054f08cc83f2d943e56fd3ebe99
foo

Note that other file contents get added to the git tree when you call hash-object:

!git cat-file -p `echo aslkfmlaskm | git hash-object -w --stdin`
aslkfmlaskm

We can then update foo to some other contents, and still retrieve the original content using the same object hash:

!echo bar > foo
!git add .
!git commit -m 'Update foo to bar, as one does.'
!git cat-file -p 257cc5642cb1a054f08cc83f2d943e56fd3ebe99
[master 9ca289a] Update foo to bar, as one does.
 1 file changed, 1 insertion(+), 1 deletion(-)
foo

The object hash is computed as the sha1 hash of a particular string constructed from the file’s contents (blob , followed by the content length as a decimal integer, followed by a zero byte, followed by the file contents).

This can be computed in python as follows:

from hashlib import sha1
from typing import Union
def git_hash_object(s: Union[str, bytes]) -> str:
    if isinstance(s, str):
        b = s.encode('utf-8')
    else:
        b = s
    return sha1(b'blob %d\0%s' % (len(b), b)).hexdigest()

git_hash_object('foo\n')
'257cc5642cb1a054f08cc83f2d943e56fd3ebe99'

The loading code can just call git-cat-file as a subprocess, or find some python implementation.

import subprocess
def load_git_object_hash(object_hash: str) -> bytes:
    result = subprocess.run(["git", "cat-file", "-p", object_hash], capture_output=True)
    result.check_returncode()
    return result.stdout

load_git_object_hash(git_hash_object('foo\n'))
b'foo\n'

Now, in our contract template example, we might have some code like:

def agree_to_contract(user_id):
    with open('contract-template.html', 'r') as f:
        template = f.read()
    terms = get_specific_terms_for_users(user_id)
    record_contract(user_id, git_hash_object(template), terms)
    return render(template, terms)
def display_exact_contract(user_id):
    object_hash, terms = get_contract_data(user_id)
    template = load_git_object_hash(object_hash).decode()
    return render(template, terms)

This allows us to easily group templates by version, retrieve old versions, and not waste a bunch of space storing the same template version again and again. You could apply the same principle to lockfiles, configuration files, docker files, self-contained algorithms, etc.

For auditing or debugging, this approach has some advantages over recording the commit hash, in that you can retrieve the file of interest in constant time without doing any writes to disk. It has the disadvantage that you need to record every file of interest to completely reproduce the relevant computation. In any case, it’s a useful technique in some circumstances, and hopefully helps you to learn a bit about how git operates.