ブランチから以前のコミットログを削除しつつ、ファイルの変更を保持する方法
ブランチの履歴を確認します:git logこれにより、変更を保持したいコミットのハッシュ値を取得できます。以前のコミットを削除します:git rebase -i <commit_hash>>>More
ブランチの履歴を確認します:git logこれにより、変更を保持したいコミットのハッシュ値を取得できます。以前のコミットを削除します:git rebase -i <commit_hash>>>More
グラフ表示オプションを有効にする まず、git logコマンドでグラフ表示オプションを有効にします。以下のコマンドを実行してください。git config --global alias.lg "log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)'>>More