1. Revert

되돌릴 최신의 Commit 이력을 확인합니다.

git log --oneline
# Expected Response
53c671e (HEAD -> main, origin/main) 6
4eeae33 5
9a4439a 4
de5dbac 3
cbe9f64 2
ad81b90 1

가장 최신의 commit으로 돌아갑니다.

git revert 53c671e

Commit 메세지를 수정할 수 있는 창이 열립니다. 수정하고 파일을 닫습니다.

자동으로 Commit이 됩니다. Comm
it을 Push합니다.

git push

다음 글 보기

이전 글 보기