Occasionally I want to create a Git repository for some ancient piece of code in my SVN repository. As I haven't had any luck in exporting parts of my giant mono repository, I tend to just grab the lowest folder, initialise a new git repository and commit. But if I do that, then everything is tagged with the current timestamp, which is definitely not what I want for code that I haven't touched in years.
Fortunately Git allows you to force the dates when you commit. Not so fortunately, the way of doing it isn't obvious (not to mention Git has two different date systems) and so whenever I want to do it, I've forgotten the specifics and need to look it up. This post serves as a reminder for myself rather than a more informative post for general use.
Before committing, set the GIT_COMMITTER_DATE
and
GIT_AUTHOR_DATE
environment variables with the timestamp you
want to use. I usually use ISO 8601 format but you can also use
RFC 2822.
If using Linux or Git Bash on Windows, use
export
instead ofset
Now I can git commit
and it will use the custom dates provided by the environment variables. If I do git log
I can see it shows the correct date. Or one of them anyway.
Alternatively, to be sure I've got the pair of dates correct, I can use custom formatting to print both dates
One word of caution - as these are environment variables, if you make another commit from the same session, it will re-use the variables which may not be what you wanted.
Like what you're reading? Perhaps you like to buy us a coffee?