`GIT - 기초 1, 기본 흐름과 명령어` 편에 이어 기본 명령어 이외의 유용한 명령어들을 이곳에 정리한다. 3. Git 유용한 명령어 모음 3.1 working with submodules # add a submodule to a repository and clone it # 저장소에 서브모듈을 추가하고 clone git submodule add https://domain.com/user/repository.git submodules/repository # add "ignore = all" to .gitmodules in order to ignore all changes in submodules # 서브모듈의 모든 변경을 무시하기 위해 .gitmodules에 ignore 설정 추가 cat .gitmo..