From 3c249c950649a37f2871a8b193f01a0640a20aef Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sun, 1 May 2005 16:36:56 -0700 Subject: Add "get_sha1()" helper function. This allows the programs to use various simplified versions of the SHA1 names, eg just say "HEAD" for the SHA1 pointed to by the .git/HEAD file etc. For example, this commit has been done with git-commit-tree $(git-write-tree) -p HEAD instead of the traditional "$(cat .git/HEAD)" syntax. --- convert-cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'convert-cache.c') diff --git a/convert-cache.c b/convert-cache.c index 631d1aa91..4d34d2d57 100644 --- a/convert-cache.c +++ b/convert-cache.c @@ -303,7 +303,7 @@ int main(int argc, char **argv) unsigned char sha1[20]; struct entry *entry; - if (argc != 2 || get_sha1_hex(argv[1], sha1)) + if (argc != 2 || get_sha1(argv[1], sha1)) usage("convert-cache "); entry = convert_entry(sha1); -- cgit v1.2.1