git checkout で特定の日付を指定する
#git_tips
90日以内であれば以下
code: git checkout spacific date
git checkout 'master@{2021-01-01 00:00:00}'
90日を超える場合は
code: git checkout specific date
git checkout git rev-list -n 1 --first-parent --before="2021-01-01 00:00:00" master
参考: https://stackoverflow.com/questions/6990484/how-to-checkout-in-git-by-date