git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Thomas Rast <trast@student.ethz.ch>
To: Rogan Dawes <rogan@dawes.za.net>
Cc: Alex K <spaceoutlet@gmail.com>,
	Miklos Vajna <vmiklos@frugalware.org>,
	Matthieu Moy <Matthieu.Moy@grenoble-inp.fr>,
	<git@vger.kernel.org>
Subject: Re: date change of commit?
Date: Thu, 29 Oct 2009 17:43:39 +0100	[thread overview]
Message-ID: <200910291743.53701.trast@student.ethz.ch> (raw)
In-Reply-To: <4AE9AAE7.2080404@dawes.za.net>

Rogan Dawes wrote:
> Alex K wrote:
> > And how do you actually set those variables? Sorry to ask such a
> > trivial question but it's been an hour that i'm going through the doc
> > for such a simple feature. I thought those were environment variables
> 
> As you suspected, they are environment variables.
> 
> i.e. :
> 
> $ GIT_AUTHOR_DATE="1112911993 -0700" git commit x

Since this was in the context of git-filter-branch, I should point out
that you'll have to use the variables with --env-filter and (like the
manpage says) make sure you export them.

So to change the date of a single commit with SHA1 <sha1>, you could
say

git filter-branch --env-filter '
  if [ $GIT_COMMIT = <sha1> ]; then
    export GIT_AUTHOR_DATE="1112911993 -0700"
    export GIT_COMMITTER_DATE="1112911993 -0700"
  fi
' <other_arguments>

Alex K wrote:
> for such a simple feature

I'm not sure if you're referring to setting the variables or actually
rewriting the commits here, but anyway:

The reason why the latter is so hard is that rewriting "old" history
is a _huge_ hassle for people who already have the previous version of
that history.

That being said, _why_?  The dates are never a guarantee that
something happened earlier or later precisely because they can easily
be modified at commit time.  So nobody should take them as more than a
hint, and there's little use in faking hints.

-- 
Thomas Rast
trast@{inf,student}.ethz.ch

      reply	other threads:[~2009-10-29 16:45 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-10-25 11:35 date change of commit? Alex K
2009-10-25 17:14 ` Matthieu Moy
2009-10-27  9:41   ` Alex K
2009-10-27 12:21     ` Miklos Vajna
2009-10-29 12:55       ` Alex K
2009-10-29 14:47         ` Rogan Dawes
2009-10-29 16:43           ` Thomas Rast [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200910291743.53701.trast@student.ethz.ch \
    --to=trast@student.ethz.ch \
    --cc=Matthieu.Moy@grenoble-inp.fr \
    --cc=git@vger.kernel.org \
    --cc=rogan@dawes.za.net \
    --cc=spaceoutlet@gmail.com \
    --cc=vmiklos@frugalware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).