DEV Community

Cover image for Git Hack: Make commit with a past date
Ayushi Rawat
Ayushi Rawat

Posted on

Git Hack: Make commit with a past date

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

Latest comments (4)

Collapse
 
algodame profile image
Chiamaka Ojiyi

Awesome. Just what I needed today.

Collapse
 
rohithv07 profile image
Rohith V

I generally use --amend to modify the recent commit message

Collapse
 
waylonwalker profile image
Waylon Walker

--amend is super powerful I've used it a number of times to change my name/email.

Collapse
 
kathanvakharia profile image
Kathan Vakharia

So you can kinda cheat on github 👀