반응형
[git] 수정 사항 되돌리기 ( stage to unstage, reset modifed ) |
* Staged 를 Unstage 로 하기
-
$ git reset <fileName>
$ git reset HEAD <fileName>
$ git reset --mixed HEAD <fileName>
-
자세한 내용과 옵션은 따로 조사를 해보자!
참고로 --hard option 을 사용하면 modified 내역도 사라져버린다.
* Modified 를 되돌리기
-
$ git checkout -- <fileName>
-
checkout 은 branch 관련 작업에도 사용되므로 관련해서는 따로 조사를 해보자.
반응형
'프로그래밍 놀이터 > Tips' 카테고리의 다른 글
[git] git pull error : remote ref is at xxx but yyy expected (0) | 2020.03.05 |
---|---|
[git] fetch 하기 & pull 하기 (0) | 2020.03.04 |
[regex] Possessive quantifier 에 대해 알아보자. (0) | 2020.02.29 |
[regex] 정규식 성능에 대해 알아보자 (0) | 2020.02.28 |
[도서 정리] 13. Git 명령어 - ProGit (0) | 2020.01.18 |
댓글