Revision 6ef1dc1cdd7c5fdaf002bf31c1a2d3203815f436 authored by Valentin Lorentz on 09 May 2019, 14:29:46 UTC, committed by Valentin Lorentz on 10 May 2019, 08:25:55 UTC
There is more repetition, but it's easier to read and
'%timeit Revision.from_dict(d)' is 5 times faster.
1 parent fc3d3c1
Raw File
git-revhash
#!/usr/bin/env bash

# Use
# git-revhash 'tree 4b825dc642cb6eb9a060e54bf8d69288fbee4904\nparent 22c0fa5195a53f2e733ec75a9b6e9d1624a8b771\nauthor seanius <seanius@3187e211-bb14-4c82-9596-0b59d67cd7f4> 1138341044 +0000\ncommitter seanius <seanius@3187e211-bb14-4c82-9596-0b59d67cd7f4> 1138341044 +0000\n\nmaking dir structure...\n'  # noqa
# output: 17a631d474f49bbebfdf3d885dcde470d7faafd7

echo -ne $* | git hash-object --stdin -t commit
back to top