This content has moved - please find it at https://devblog.cyotek.com.

Although these pages remain accessible, some content may not display correctly in future as the new blog evolves.

Visit https://devblog.cyotek.com.

Committing to a Git repository using custom dates

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.

set GIT_COMMITTER_DATE="2011-12-02T23:37:52"

set GIT_AUTHOR_DATE="2011-12-02T23:37:52"

If using Linux or Git Bash on Windows, use export instead of set

Defining the environment variables that our commit will use

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.

The output of `git-log`, showing that at least one date date was used

Alternatively, to be sure I've got the pair of dates correct, I can use custom formatting to print both dates

git log --pretty="Author date: %ad, Committer date: %cd"

The output of `git-log` with a custom format string, showing that both the committer and author dates were used

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.

About The Author

Gravatar

The founder of Cyotek, Richard enjoys creating new blog content for the site. Much more though, he likes to develop programs, and can often found writing reams of code. A long term gamer, he has aspirations in one day creating an epic video game. Until that time, he is mostly content with adding new bugs to WebCopy and the other Cyotek products.

Leave a Comment

While we appreciate comments from our users, please follow our posting guidelines. Have you tried the Cyotek Forums for support from Cyotek and the community?

Styling with Markdown is supported