LHJ
I'm a FE developer.
Navigation
Home
About Me
categories
My Projects
git 실행했던 명령어 취소하는 방법
11 Sep 2020
»
git
git 실행했던 명령어 취소하는 방법
git reflog
로 이전 명령어 로그를 확인한다.
돌아가고 싶은 시점으로
git reset --hard HEAD@{1}
명령어를 입력한다.
여기서
HEAD@{1}
이 부분이 돌아가고 싶은 시점이다.
Related Posts
git index.lock 파일
(Categories:
git
)
git remote branch 어디랑 연결되어있는지 확인방법
(Categories:
git
)
파일 상태를 Staged 에서 Unstaged로 변경하기
(Categories:
git
)
필요한 Git 워크 플로 - 단일 저장소에서 여러 팀을 처리하는 방법
(Categories:
git
)
특정파일을 특정시점으로 리셋하고 싶을 때
(Categories:
git
)
git 특정 커밋기록 가져오기
(Categories:
git
)
« 1.4.1 명세서
getter setter in ES6 »