From 065d2cd2b65f5c195cdbbf902586ca6feea01394 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 29 Jan 2009 20:17:06 +0000 Subject: - git-repository--after-tarball: o commit the tarball with user "unknown" o commit the tarball using the tarball's modification time --- git-repository--after-tarball | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'git-repository--after-tarball') diff --git a/git-repository--after-tarball b/git-repository--after-tarball index 5fda909..bed3d04 100755 --- a/git-repository--after-tarball +++ b/git-repository--after-tarball @@ -47,6 +47,12 @@ our_git_clone() { fi } +set_GIT_AUTHOR_DATE() { + # taking date of first tarball, sorry for the other tarballs ;) + tarball=$1 + export GIT_AUTHOR_DATE=`stat -c '%y' "$RPM_SOURCE_DIR/$tarball"` +} + if [ ! -e .git ]; then if [ -n "$GIT_URL" ]; then our_git_clone $GIT_URL @@ -57,7 +63,8 @@ if [ ! -e .git ]; then fi fi git add . -git commit -q -a -m "imported $tarballs" +set_GIT_AUTHOR_DATE $tarballs +git commit -q -a --author="unknown <>" -m "imported $tarballs" git branch -f vanilla git branch -f patches-applied git checkout patches-applied -- cgit v1.2.1