2005-08-23 10:49:47 +02:00
|
|
|
git-get-tar-commit-id(1)
|
|
|
|
========================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-11-19 02:50:57 +01:00
|
|
|
git-get-tar-commit-id - Extract commit ID from an archive created using git-archive
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2008-06-30 08:09:04 +02:00
|
|
|
'git get-tar-commit-id' < <tarfile>
|
2005-09-06 21:21:16 +02:00
|
|
|
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-09-06 21:21:16 +02:00
|
|
|
Acts as a filter, extracting the commit ID stored in archives created by
|
2008-07-03 07:41:41 +02:00
|
|
|
'git-archive'. It reads only the first 1024 bytes of input, thus its
|
2005-09-06 21:21:16 +02:00
|
|
|
runtime is not influenced by the size of <tarfile> very much.
|
|
|
|
|
2008-07-03 07:41:41 +02:00
|
|
|
If no commit ID is found, 'git-get-tar-commit-id' quietly exists with a
|
2005-09-06 21:21:16 +02:00
|
|
|
return code of 1. This can happen if <tarfile> had not been created
|
2008-07-03 07:41:41 +02:00
|
|
|
using 'git-archive' or if the first parameter of 'git-archive' had been
|
2005-09-06 21:21:16 +02:00
|
|
|
a tree ID instead of a commit ID or tag.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|