블로그 옮겼습니다

Remote 저장소에 이미 올린 데이터 gitignore에 추가한뒤 Remote 저장소에서 삭제되게하기 본문

Development/Git

Remote 저장소에 이미 올린 데이터 gitignore에 추가한뒤 Remote 저장소에서 삭제되게하기

sgc109 2018. 5. 20. 01:23
git rm -r --cached some-directory
git commit -m 'Remove the now ignored directory "some-directory"'
git push origin master


Comments