summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2d86d2c)
raw | patch | inline | side by side (parent: 2d86d2c)
author | Junio C Hamano <junkio@cox.net> | |
Wed, 26 Apr 2006 10:18:51 +0000 (03:18 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 26 Apr 2006 10:18:51 +0000 (03:18 -0700) |
We use get_sha1() for -p (parent) objects, but still used
get_sha1_hex() for the tree. Just to be consistent, allow
extended SHA1 expression for the tree object name.
Note that this is not to encourage funky things like this:
git-commit-tree HEAD^{tree} -p HEAD
Signed-off-by: Junio C Hamano <junkio@cox.net>
get_sha1_hex() for the tree. Just to be consistent, allow
extended SHA1 expression for the tree object name.
Note that this is not to encourage funky things like this:
git-commit-tree HEAD^{tree} -p HEAD
Signed-off-by: Junio C Hamano <junkio@cox.net>
commit-tree.c | patch | blob | history |
diff --git a/commit-tree.c b/commit-tree.c
index 2d8651894a20e752eb47e6da439ad3cee13c29c4..e91af4bd36a04d07dd00b124e63f2ab085de69df 100644 (file)
--- a/commit-tree.c
+++ b/commit-tree.c
git_config(git_default_config);
- if (argc < 2 || get_sha1_hex(argv[1], tree_sha1) < 0)
+ if (argc < 2 || get_sha1(argv[1], tree_sha1) < 0)
usage(commit_tree_usage);
check_valid(tree_sha1, tree_type);