Git에서 루트 커밋을 편집하시겠습니까? 이후 커밋에서 메시지를 변경할 수 있습니다. git commit --amend # for the most recent commit git rebase --interactive master~2 # but requires *parent* 부모가 없는 첫 번째 커밋의 커밋 메시지를 어떻게 변경할 수 있습니까?Git 버전 1.7.12부터 이제 사용할 수 있습니다. git rebase -i --root 문서화작업 트리가 깨끗하다고 가정하면 다음 작업을 수행할 수 있습니다. # checkout the root commit git checkout # amend the commit git commit --amend # rebase all the other commits in m..