반응형
파일을 하나씩 제거
git rm --cached file1 file2 dir/file3
파일을 한꺼번에 제거
git rm --cached `git ls-files -i -c --exclude-from=.gitignore`
윈도우
git ls-files -i -c --exclude-from=.gitignore | xargs git rm --cached
윈도우 powershell
git ls-files -i -c --exclude-from=.gitignore | %{git rm --cached $_}
반응형
'리뷰와 각종 팁' 카테고리의 다른 글
가끔 생각나는 팔도 도시락면!! ^^ (0) | 2024.02.19 |
---|---|
걱정 다스리기. (4) | 2024.01.25 |
[iOS] iOS에서 UDP 브로드캐스트 패킷 송수신 설정. (0) | 2023.12.19 |
윈도10 최대 절전 모드 사용하기 (0) | 2022.08.23 |
마음에 안정이 필요할 때. (0) | 2021.10.18 |