Python_Beginer/GIT
[GIT]Git Revert(커밋 삭제하지 않고 취소)
AnKiWoong
2020. 1. 4. 18:13
반응형
$ vim rev.txt
$ vim commit -am "R5"
$ git log
$ git revert 379d5e3ee5acc90208764e0bde93f13eb1e20a19
$ git log
$ cat rev.txt
1. git revert 취소할 commit Hash
: 커밋을 삭제하지 않고 취소
반응형