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. --- ls-tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ls-tree.c') diff --git a/ls-tree.c b/ls-tree.c index d2ab02e348..339ac36a4c 100644 --- a/ls-tree.c +++ b/ls-tree.c @@ -102,7 +102,7 @@ int main(int argc, char **argv) if (argc != 2) usage(ls_tree_usage); - if (get_sha1_hex(argv[1], sha1) < 0) + if (get_sha1(argv[1], sha1) < 0) usage(ls_tree_usage); sha1_file_directory = getenv(DB_ENVIRONMENT); if (!sha1_file_directory) -- cgit v1.2.1