経緯 Gitを利用する場合、Author情報(name,email)の設定が必要ですが、コミット履歴(コミットログ)を含むAuthor情報を変更したかった。 gitコマンドでは、以下コマンドでAuthor情報を変更可能だが、コミット履歴(コミットログ)は変更できない。 # VSCodeなどで編集して変更 git cofing --global(--local) --edit # コマンド経由で変更 git config --global user.name "Your Name" git config --global user.email "your.email@example.com" 調…