Last active
January 5, 2020 22:30
-
-
Save TimUntersberger/d0dc51513a0208c1f1fa6407dfa1ab20 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git filter-branch -f --env-filter ' | |
GIT_AUTHOR_DATE=$(($(echo $GIT_AUTHOR_DATE | cut -d" " -f1 | cut -d@ -f2) - 86400)); | |
GIT_COMMITTER_DATE=$GIT_AUTHOR_DATE; | |
' @ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
86400 is 1 day in seconds.