posted by 귀염둥이채원 2019. 3. 11. 11:33

# 디렉토리 삭제

$ git rm -r --cached {directory name}

* git rm --> 원격 저장소와 로컬 저장소에 있는 파일을 삭제한다.

* git rm --cached --> 원격 저장소에 있는 파일을 삭제한다. 로컬 저장소에 있는 파일은 삭제하지 않는다.


# git commit

$ git commit -m "remove {directory name} directory"


# git push

$ git push origin master

'Tool > git' 카테고리의 다른 글

Git commit --amend로 마지막 커밋 수정하기  (0) 2019.02.08
git submodule이란?  (0) 2019.02.08
git commit --amend 오류  (0) 2019.01.24