diff options
-rwxr-xr-x | git-repository--after-tarball | 2 | ||||
-rwxr-xr-x | git-repository--apply-patch | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/git-repository--after-tarball b/git-repository--after-tarball index bed3d04..47844d0 100755 --- a/git-repository--after-tarball +++ b/git-repository--after-tarball @@ -64,7 +64,7 @@ if [ ! -e .git ]; then fi git add . set_GIT_AUTHOR_DATE $tarballs -git commit -q -a --author="unknown <>" -m "imported $tarballs" +git commit -q -a --author="unknown author <cooker@mandrivalinux.org>" -m "imported $tarballs" git branch -f vanilla git branch -f patches-applied git checkout patches-applied diff --git a/git-repository--apply-patch b/git-repository--apply-patch index a4bdf8b..1ad72fa 100755 --- a/git-repository--apply-patch +++ b/git-repository--apply-patch @@ -64,7 +64,7 @@ sub git_commit { my ($msg, $date) = @_; $ENV{GIT_AUTHOR_DATE} = $date; - open(my $F, '| git commit -q --author="unknown <>" --file=-'); + open(my $F, '| git commit -q --author="unknown author <cooker@mandrivalinux.org>" --file=-'); print $F $msg; close $F or die "git commit failed\n"; } |