git rm 으로 삭제한 파일은 두단계를 거쳐서 복구해야 한다.
git reset HEAD <filename> git checkout -- <filename> |
[링크 : https://stackoverflow.com/questions/11727083/how-to-recover-file-after-git-rm-abc-c]
+
$ git rm style.css rm 'web/css/style.css' $ git st -s D style.css $ git reset HEAD style.css Unstaged changes after reset: D web/css/style.css $ git st D style.css $ git checkout -- style.css $ ll total 12 -rw-r--r-- 1 user 197121 1831 8월 22 10:52 style.css |
'프로그램 사용 > Version Control' 카테고리의 다른 글
git 원격지 주소 변경하기 (0) | 2018.09.06 |
---|---|
git archive (svn export) (0) | 2018.09.05 |
git branch (0) | 2018.08.22 |
git add / reset / checkout (0) | 2018.08.22 |
git 커밋이 안될 때? (no changes added to commit) (0) | 2018.08.20 |