How to remove a library from your project
How to remove a library from your project 라이브러리를 프로젝트에서 제거하는 방법
The following describes how to remove a library from your project.
다음은 라이브러리를 프로젝트에서 삭제하는 방법을 설명한다.
1. Open the command prompt and go to your project directory.
명령 프롬프트를 열고, 프로젝트 디렉토리로 이동한다.
cd <project directory> |
2. Remove a library from the Git Submodule list by Input the following command.
다음 명령을 입력해, 라이브러리를 깃 하위 모듈 목록에서 제거한다.
Working directory 작업 디렉토리: "<project directory>"
git submodule deinit library/<library name>
git rm library/<library name> |