반응형

STEP 1

마지막 커밋에 수정할 사항들을 git add 하기

 

STEP 2

[option 1] git commit --amend

: 커밋 메시지를 수정을 위한 에디터가 켜진다. 커밋 메시지 수정이 필요한 경우 파일을 수정하고, 아니면 에디터 창을 닫으면 된다.

 

[option 2] git commit -m "memo" --amend

: -m 옵션을 주는 경우 마지막 커밋 메세지가 쌍 따옴표 안의 문장으로 대체된다.

 

STEP 3 : remote 브랜치로 force push 하기

[option 1] git push origin [branch-name] -f

[option 2] git push origin +[branch-name]

 


예제

[ option 1 ]

[ option 2 ] 

 

반응형

+ Recent posts