Git

commit 되지 않은 변경 사항 취소

dm.kim 2022. 6. 20. 09:36

로컬에서 commit 되지 않은 변경 사항을 전부 취소하고 싶을 때 사용하는 명령어

 

git reset //staged 파일들 unstage

git checkout . //모든 변경 사항 취소

git clean -fdx //추적할 수 없는 모든 파일 제거

 

참고: https://extbrain.tistory.com/83

'Git' 카테고리의 다른 글

Git remote와 sync 맞추기  (0) 2023.03.24
Clear git local cache  (0) 2023.03.24
git commit --amend  (0) 2022.05.10
GitHub/GitLab 로컬 로그인  (0) 2022.05.08
이미 push한 commit 메시지 변경  (0) 2021.07.06