https://stackoverflow.com/questions/52704/how-do-i-discard-unstaged-changes-in-git
변경된 내용을 없애려는 Branch로 Checkout 한 뒤, 모든 변경 사항을 삭제하려면 아래를 입력한다.
git restore .
만약, 특정 파일만 변경사항에서 제거하고싶다면 아래처럼 입력하면 된다.
git restore path/to/file/to/revert
'Other > git' 카테고리의 다른 글
[git] .gitignore 적용하기 (0) | 2023.03.25 |
---|---|
Git Pull Request에 다른 브랜치의 커밋 로그까지 딸려오는 경우 해결방안 (0) | 2022.02.04 |
Git한테 호되게 혼난 후 고찰 (3) | 2022.01.26 |
로컬에 GitHub 원격 저장소 Pull Request 가져와서 Test 해보기 (2) | 2021.12.27 |