{file} 파일명 또는 디렉토리로 가능하다.

git remote -v // 원격저장소와 연결되어있는지 확인
git rm {file} // 원격, 로컬 모두 삭제
git rm -rf {file} // 
git rm -r --cached {file} // 원격 저장소만 삭제
git commit -m "message" 
git push origin master

+ Recent posts