REPOSITORY를 생성, 삭제, 수정하기 위한 Git 문법입니다.
LOCAL REPOSITORY와 REMOTE REPOSITORY를 상호 연동해야 합니다.
LOCAL REPOSITORY는 사용자 컴퓨터 저장소입니다.
init으로 아직 버전관리를 하고 있지 않은 폴더를 Git 저장소로 만들 수 있습니다.
git init
REMOTE REPOSITORY는 원격 서버 저장소입니다.
Github에서 REPOSITORY를 생성하고 LOCAL 환경에 복제 (clone) 할 수 있습니다.
git clone <remote_repository_url>
Ex)
git clone https://github.com/<user_name>/<project_name>.git
REMOTE REPOSITORY로 접속할 때, 사용자 인증하는 과정을 건너뛰기 위해 TOKEN 발행 후 REPOSITORY 생성 시 토큰을 추가한 URL을 입력합니다.
git clone <remote_repository_url + TOKEN>
Ex) https://와 github 사이에 'TOKEN 값 + @'을 추가합니다.
git clone https://<token_value>@github.com/<user_name>/<project_name>.git
LOCAL REPOSITORY를 먼저 생성해 REMOTE REPOSITORY를 추가할 때 사용합니다.
git remote add <remote_repo_name> <remote_repo_url>;
보통 REMOTE REPOSITORY NAME은 origin으로 생성합니다.
(clone 시에도 origin으로 등록됩니다.)
git remote add origin <remote_repo_url>;
git remote set-url <remote_repo_name> <remote_repository_url>
git remote set-url origin <remote_repository_url>
git remote rename <old_name> <new_name>
git remote remove <remote_repo_name>
git remote remove origin
git remote -v
git remote show <remote_repo_name>
git remote show origin