Git

ph
Admin (토론 | 기여)님의 2017년 4월 4일 (화) 04:12 판 (새 문서: ==Remove a file from a Git repository without deleting it from the local filesystem== git rm --cached mylogfile.log For a directory: git rm --cached -r mydirectory [http://stackover...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
이동: 둘러보기, 검색

Remove a file from a Git repository without deleting it from the local filesystem

git rm --cached mylogfile.log

For a directory:

git rm --cached -r mydirectory

[1]