diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-01 16:36:56 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-01 16:36:56 -0700 |
commit | 3c249c950649a37f2871a8b193f01a0640a20aef (patch) | |
tree | 8ce5c715973ddb7ed553be593c090de979c4a5ce /fsck-cache.c | |
parent | 68849b544258cafdf42f3ebe9772ee7a346f7147 (diff) | |
download | git-3c249c950649a37f2871a8b193f01a0640a20aef.tar.gz git-3c249c950649a37f2871a8b193f01a0640a20aef.tar.xz |
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 'fsck-cache.c')
-rw-r--r-- | fsck-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fsck-cache.c b/fsck-cache.c index d8d2e594f..fbcd2b64f 100644 --- a/fsck-cache.c +++ b/fsck-cache.c @@ -178,7 +178,7 @@ int main(int argc, char **argv) if (*arg == '-') continue; - if (!get_sha1_hex(arg, head_sha1)) { + if (!get_sha1(arg, head_sha1)) { struct commit *commit = lookup_commit(head_sha1); struct object *obj; |