diff --git a/import-tars.perl b/import-tars.perl index d50ce26..f565321 100644 --- a/import-tars.perl +++ b/import-tars.perl @@ -1,5 +1,8 @@ #!/usr/bin/perl +# @reynir: imported from git source: +# https://git.kernel.org/pub/scm/git/git.git/plain/contrib/fast-import/import-tars.perl?id=HEAD + ## tar archive frontend for git-fast-import ## ## For example: @@ -23,10 +26,10 @@ my $metaext = ''; die "usage: import-tars [--metainfo=extension] *.tar.{gz,bz2,lzma,xz,Z}\n" unless GetOptions('metainfo=s' => \$metaext) && @ARGV; -my $branch_name = 'import-tars'; +my $branch_name = 'production'; my $branch_ref = "refs/heads/$branch_name"; -my $author_name = $ENV{'GIT_AUTHOR_NAME'} || 'T Ar Creator'; -my $author_email = $ENV{'GIT_AUTHOR_EMAIL'} || 'tar@example.com'; +my $author_name = $ENV{'GIT_AUTHOR_NAME'} || 'Lim Chee Aun'; +my $author_email = $ENV{'GIT_AUTHOR_EMAIL'} || 'cheeaun' . '@' . 'gmail.com'; my $committer_name = $ENV{'GIT_COMMITTER_NAME'} || `git config --get user.name`; my $committer_email = $ENV{'GIT_COMMITTER_EMAIL'} || `git config --get user.email`;