git commit --amend

  • 변경사항 적용 후 commit을 한 경우, 가끔 message를 수정하거나 오타를 수정해야 할때가 있다.
  • git commit --amend는 최근의 작성한 commit message를 수정할 수 있다.
git commit --amend

  • 해당 명령어로 commit message를 수정하면, git push를 통해 원격 저장소도 동일하게 적용해야 한다.
  • 이때, --force 명령어를 통해 강제 push해야 한다.
  • --force-with-lease는 원격 저장소가 변경되지 않은 경우에만 push하도록 한다.
git push --force
git push --force-with-lease

'Git' 카테고리의 다른 글

[git] branch 생성  (0) 2024.08.22
[git] clone, pull, push  (0) 2024.08.18

+ Recent posts