コミット日時を修正する方法
参考:
git commit --amend で今の日時にして commit し直す – Qiita
コミット日時を修正するコマンド | とあるクリエイターのエンジニアブログ
直前のコミットの Author (作者) と Author Date (作成日付) を変更する | YoshinoriN’s Memento
author date と committer date の違い
参考:
コミットのタイムスタンプには author date と committer date の2種類があるという話 | ひだまりソケットは壊れない
コミット日時を著者日時に合わせる
最後のコミットのコミット日時を著者日時に合わせる。
$ git rebase @~ --committer-date-is-author-date
コミット日時を確認する。
$ git log -1 --pretty=format:"%ci %C(yellow)%h%C(reset)%C(auto)%d%C(reset) %s"
コミットの詳細を確認する。
$ git log -1 --pretty=fuller
参考:
コミットの Author Date と Commit Date を合わせる方法 | 全国個人事業主支援協会
change commit date to author date – Stack Overflow
スクリプト
参考:
コミット日付をまとめて書き換えるワンライナー – Qiita
filter-branch
参考: