etc tools
[git] commit/push한 내용을 수정해서 다시 commit/push하기
'김용환'
2018. 6. 20. 14:15
commit/push한 local repository를 하나 뒤로 돌려서 수정하고 다시 commit/push할 때 유용하다.
$ git reset HEAD^
코드 작업
$ git add
$ git commit -m "이전 이름 커밋 메시지"
강제 리버트하고. 기존 히스토리 안남게 한다.
$ git push origin +master