[GIT] 버젼을 삭제하지 않고 유지하면서 상태 돌리기 - Reverse commit
다음과 같이 commit log가 있다고 가정하자 첫번째 commit log) added : test2.php 두번째 commit log) modified : test.php 세번째 commit log) added : test.php 우선 세번째 commit log인 added : test.php 에서는 프로젝트에 test.php 라는 파일을 추가를 했다. 두번째 commit log 인 modified : test.php 에서는 추가했던 test.php 에 소스코드를 수정을 했다. 첫번째 commit log 인 added : test2.php 에서는 프로젝트에 test2.php 라는 파일을 추가했다 라고 가정했을 때 현재 HEAD는 첫번째 commit log 에 위치해있는 상태이다. 이때, test.ph..