summaryrefslogtreecommitdiffstats
path: root/commit-tree.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-04-26 12:18:51 +0200
committerJunio C Hamano <junkio@cox.net>2006-04-26 12:18:51 +0200
commit3496277a561307c3d31d2085347af8eb4c667c36 (patch)
tree6ebd68e62f0fef1def59bb711cf167cefdb899e7 /commit-tree.c
parentMakefile: remove and create xdiff library from scratch. (diff)
downloadgit-3496277a561307c3d31d2085347af8eb4c667c36.tar.xz
git-3496277a561307c3d31d2085347af8eb4c667c36.zip
commit-tree: allow generic object name for the tree as well.
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>
Diffstat (limited to '')
-rw-r--r--commit-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit-tree.c b/commit-tree.c
index 2d8651894a..e91af4bd36 100644
--- a/commit-tree.c
+++ b/commit-tree.c
@@ -92,7 +92,7 @@ int main(int argc, char **argv)
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);