Git
[Git] 깃 명령어 연습 2
git reset [commit ID] #git 되돌리기 git reset HEAD~1 #git 1칸 되돌리기 git reset HEAD~1 --[option] #--soft, --mixed, --hard 초록, 빨강, 완전히 #push 후 리셋해야 안전하게 처리할 수 있다. git revert [commit ID] git revert HEAD #실수한 부분을 새로운 커밋으로 되돌린다. 기록을 남긴다. #reset 보다는 revert로 기록을 남긴다. git branch #가지치기 여러 가지로 fork 할 수 있다. git branch [branch name] git branch -d [branch name] #branch 지우기 git checkout [branch name] #해당 branch로 전환..