Git Mistakes

Human Being·2024년 8월 22일
0

Git

목록 보기
3/3
post-thumbnail
post-custom-banner

1. 이미 commit 했는데...

  1. git add ~~
  2. git commit --amend
    • Commit message를 수정할 필요가 없다면 git commit --amend --no-edit

2. 이미 push 했는데...

  1. git reset --soft HEAD^{index}
    • index 만큼의 최근 commit까지 취소하고 되돌아간다
  2. 다시 커밋하고
  3. git push -f

0개의 댓글