Skip to main content

Command Palette

Search for a command to run...

Git Hack: Make commit with a past date

Published
2 min read
Git Hack: Make commit with a past date
A

Software Engineer | Technical Blogger | YouTuber | Exploring and Refactoring! | connect with me on Twitter

Hello reader!

Ever wanted to commit something to a git repo with a past date? Here’s how you could do it.

If you are working on a project and missed a commit yesterday or you accomplished the task but GitHub for Windows bailed on you? Well, this little hack can solve your problem. Check the YouTube video tutorial for live demonstration and better Understanding.

Pre-Step. Pull all data from remote to the local repository.

For the same, we are using the --amend and --date switches. The exact command is as follows:

$ git commit --amend --date="YYYY-MM-DD HH:MM:SS"

Simple isn't it!

And with that, it's a wrap! I hope you found the article useful! Share in the comments below. I create content about Career, Blogging, Programming, and Productivity, If this is something that interests you, please share the article with your friends and connections. You can also subscribe to my newsletter to get updates every time I write something!

Thank you for reading, If you have reached so far, please like the article, It will encourage me to write more such articles. Do share your valuable suggestions, I appreciate your honest feedback!

I would strongly recommend you to Check out the YouTube video of the same and don't forget to subscribe to my Channel. I would love to connect with you at Twitter | LinkedIn.

You should definitely check out my other Blogs:

See you in my next Blog article, Take care!!

L

Good stuff.

Though be wary of amending commits (message) when working with other developers. It rewrites the commit which would result as different on those who already pulled it.

1
S

You can always commit using:

GIT_AUTHOR_DATE="Wed Sep 24 14:12:30 2020 +0530" GIT_COMMITTER_DATE="Wed Sep 24 14:12:30 2020 +0530" git commit -m "message"

Been using this trick for years to show clients that the work is consistent over a span of days when in reality I’d build it in the first day or so.

Also, the amend one is fine if the commit is an unpushed commit (repo is local-only still).

L

Saifur Rahman Mohsin notice when i mentioned "when working with other developers".

1
S

Lee Hansel Solevilla Yeah, I did. Absolutely agree with your point.

M
Mark5y ago

Interesting, thanks!

Git has a committer and author date, do you happen to know which one(s) this updates?

More from this blog

A

Ayushi Rawat - The official blog of Ayushi Rawat

72 posts

Software Engineer | Technical Blogger | YouTuber | Exploring and Refactoring! | Connect with me on Twitter