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. --- rev-tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rev-tree.c') diff --git a/rev-tree.c b/rev-tree.c index 95ec274fc..bfc8b1257 100644 --- a/rev-tree.c +++ b/rev-tree.c @@ -97,7 +97,7 @@ int main(int argc, char **argv) arg++; basemask |= 1<= MAX_COMMITS || get_sha1_hex(arg, sha1[nr])) + if (nr >= MAX_COMMITS || get_sha1(arg, sha1[nr])) usage("rev-tree [--edges] [--cache ] []"); process_commit(sha1[nr]); nr++; -- cgit v1.2.1