`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..
GitHub/Git

매일(?) 사용하는 GIT 을 더 잘 사용하기 위해 많이 기초부터 정리하도록 한다. 잘 정리되어있는 외국 블로그를 발견하게 되어 이를 참고하여 번역해서 정리하도록 한다. 이 글은 길이가 길고 읽기 목적이 아닌 필요한 경우에 검색해서 명령어를 쓸 수 있도록 하는 정리자료이다. 1. Git 흐름 일단, git과 github가 무엇인지 아는 상태에서 큰 흐름은 다음과 같다. 각 명령어는 아래 ‘Git 명령어 모음’의 ‘2.1 git workflow’에서 사용법 및 간단한 설명이 나와있다. 2. Git 기본 명령어 모음 - git workflow을 중심으로 2.1 initialize and clone # initialize a git repository in the current working directory..