git rm --cached {파일명}
git rm --cached {폴더명}/
- Windows의 경우
git config --global core.autocrlf true- Linux/OS X의 경우
git config --global core.autocrlf input
git reset --hard HEAD
가장 최근 커밋된 상태로 복구
git rm --cached -r (디렉토리명)
명령을 통해 이미 캐시된 내역을 지우고 (지우지 않으면 aleady exists in index 에러 발생)
git submodule add (디렉토리명)
명령으로 서브모듈로 만들 수 있음
서브모듈은 커밋 시 아예 별개로 취급됨.
확인
git remote get-url {원격 이름}
세팅
git remote set-url {원격 이름} {세팅할 url}