tar archive frontend for fast-import.
commit590dd4bfd25b3c7592004258384f7541d9315712
authorShawn O. Pearce <spearce@spearce.org>
Thu, 8 Feb 2007 20:26:01 +0000 (8 15:26 -0500)
committerShawn O. Pearce <spearce@spearce.org>
Thu, 8 Feb 2007 20:37:53 +0000 (8 15:37 -0500)
tree374162435b4d4c941b6b8b0b3ab951534537aedf
parent882227f117a1356a7132cfdc24b1e2389b16133b
tar archive frontend for fast-import.

This is an example fast-import frontend, in less than 100 lines
of Perl.  It accepts one or more tar archives on the command line,
passes them through gzcat/bzcat/zcat if necessary, parses out the
individual file headers and feeds all contained data to fast-import.
No temporary files are involved.

Each tar is treated as one commit, with the commit timestamp coming
from the oldest file modification date found within the tar.

Each tar is also tagged with an annotated tag, using the basename
of the tar file as the name of the tag.

Currently symbolic links and hard links are not handled by the
importer.  The file checksums are also not verified.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
contrib/fast-import/import-tars.perl [new file with mode: 0755]