Git

Git으로 버전 관리 시작 (git init, config, clone, remote rm)

thxxyj 2022. 9. 24. 23:13
728x90

Git으로 버전 관리하기

1. 버전 관리할 폴더(로컬 저장소) 생성

 - git init  --> .git 폴더 생김

2. git 사용자 정보 등록

 - git config --global user.name {사용자 이름}

 - git config --global user.email {사용자 이메일}

3. 파일 생성/수정 --> git add {수정 파일} --> git commit

4. 원격 저장소(Github)에 연결하기

 - git remote add origin https://github.com/{아이디}/GitStudy.git   (HTTPS 버전) 

 - git remote add origin git@github.com:{아이디}/GitStudy.git  (SSH 버전) 

 (* git remote -v: 원격 저장소에 잘 연결되었는지 확인)

5. Github에 commit 올리기

 - git push origin master

 

git clone (Github에서 repo 받아오기)

1. 로컬 저장소(폴더) 생성

2. {로컬경로}에 git clone   (* 경로 없이 git clone 하면 명령어 입력하는 경로 아래에 repo 이름의 폴더가 생성됨)

 - git clone https://github.com/{아이디}/{repo이름}    {로컬경로}  (HTTPS 버전) 

 - git clone git@github.com:{아이디}/{repo이름}    {로컬경로}   (SSH 버전) 

3. 기존에 작업 중이던 로컬저장소에서 새로운 commit 적용하기

 - git pull origin master

 

로컬 저장소에 등록했던 원격 저장소 삭제하기

git remote rm {단축이름}  {git url}

ex) git remote rm   origin   https://github.com/아이디/repo이름.git

 

GitHub에서 협업하기 (=Repo 접근 권한 추가)

Settings - Manage Access - Invite a collaborator

 

728x90