Git modify commit message
1 minute read
Git commit message 수정하기
바로 이전 commit message 수정하기
git commit --amend
특정 commit을 지정하여 message 수정하기
git rebase -i HEAD~~
~
갯수당 최근으로부터 commit 갯수
수정하려는 commit의 pick
을 edit
으로 수정하고 저장, 종료한다.
git commit --amend
--amend
옵션을 지정하면 edit
으로 수정한 commit의 message를 수정할 수 있다.
수정이 완료되면 --continue
옵션을 지정한 rebase
를 실행합니다.
I feedback.
Let me know what you think of this article in the comment section below!
Let me know what you think of this article in the comment section below!
comments powered by Disqus