aboutsummaryrefslogtreecommitdiffstats
path: root/export.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-01 16:36:56 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-01 16:36:56 -0700
commit3c249c950649a37f2871a8b193f01a0640a20aef (patch)
tree8ce5c715973ddb7ed553be593c090de979c4a5ce /export.c
parent68849b544258cafdf42f3ebe9772ee7a346f7147 (diff)
downloadgit-3c249c950649a37f2871a8b193f01a0640a20aef.tar.gz
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.
Diffstat (limited to 'export.c')
-rw-r--r--export.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/export.c b/export.c
index 885f4e88fc..78bfe9f222 100644
--- a/export.c
+++ b/export.c
@@ -73,8 +73,8 @@ int main(int argc, char **argv)
unsigned char top_sha1[20];
if (argc < 2 || argc > 4 ||
- get_sha1_hex(argv[1], top_sha1) ||
- (argc == 3 && get_sha1_hex(argv[2], base_sha1)))
+ get_sha1(argv[1], top_sha1) ||
+ (argc == 3 && get_sha1(argv[2], base_sha1)))
usage("git-export top [base]");
export(get_commit(top_sha1), argc==3 ? get_commit(base_sha1) : NULL);
return 0;