Git Hack: Make commit with a past date

Sandeep Chahal
Wednesday, June 16 2021
1
post header image

Hello reader! N|Solid github Ever wanted to commit something to a git repo with a past date? Here’s how you could do it.

  • ✨Magic ✨

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! github

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.

Comments

No Comments