On Mon, Jul 05, 2010 at 02:52:38PM -0400, jeffpc@xxxxxxxxxxxxxx wrote: > > I think we might need a little bit more logic in this patch... > > if I commit, and immediately after push 10 patches, wouldn't the HEAD end up > with a commit that's ~10 minutes in the future? Hmm, good point. I hadn't considered that case. The most common case happens when I rebase to a new release, and then do a "guilt push -a". In that case the time that start with isn't "now", but whenver the last release happened, which is typically far enough in the past that we don't end up in the future. However, I agree that's a concern. How about this? > I do like the idea of git-commit warning/erroring, but I don't think that > guilt issuing a warning is necessary. Afterall, it's only a timestamp > change. It might be a bit of a shock for anyone looking at the timestamps > expecting them to be out of order (based on the patch times), but I think > it's better than warning all the time. I guess I didn't worry too much since "guilt push -a" is pretty noisy anyway. I've shortened the message, but if you think it's better to pull the message altogether feel free... - Ted >From d5659084435a885e05a8fc9afbffe8cdd9535828 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o <tytso@xxxxxxx> Date: Sun, 4 Jul 2010 22:06:08 -0400 Subject: [PATCH] guilt: Make sure the commit time is increasing Git has various algorithms, most notably in git rev-list, git name-rev, and others, which depend on the commit time increasing. We want to keep the commit time the same as much as possible, but if necessary, adjust the time stamps of the patch files to obey this constraint. Signed-off-by: "Theodore Ts'o" <tytso@xxxxxxx> --- guilt | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/guilt b/guilt index b6e2a6c..edcfb34 100755 --- a/guilt +++ b/guilt @@ -535,6 +535,17 @@ commit() export GIT_AUTHOR_EMAIL="`echo $author_str | sed -e 's/[^<]*//'`" fi + ct=$(git log -1 --pretty=%ct) + if [ $ct -gt $(stat -c %Y "$p") ]; then + echo "Adjusting mod time of" $(basename "$p") + ct=$(expr $ct + 60) + if [ $ct -gt $(date +%s) ]; then + touch "$p" + else + touch -d @$(expr $ct + 60) "$p" + fi + fi + # must strip nano-second part otherwise git gets very # confused, and makes up strange timestamps from the past # (chances are it decides to interpret it as a unix -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html