How to change a Git commit date (for beginners)
I am assuming you know git commit command and its option --amend. If not, then read about them in the docs.
So, this is the template code:
git commit --amend --no-edit --date <date>
The Git internal format for setting <date> is <unix timestamp> <tim...
justmyahia.hashnode.dev3 min read