Etc/Git

github 기본 연동

곤프 2020. 12. 28. 11:28

* git config 설정

  #git config --global user.name "유저이름"

  #git config --global user.email "유저이메일"

  #git config --list

 

* 프로젝트 생성 후 기본적인 연동방법

1. 리포지토리 생성

2. 프로젝트 경로 이동

3. #git init

4. #git commit -m "first commit"

5. #git branch -M master

6. #git remote add origin https://github.url

7. #git push -u origin master

 

* git 연동 확인

  #git remote -v

 

* 저장소의 git 소스 내려 받기

  #git pull origin master

 

* git branch 생성

  #git branch -M name

 

* git branch 삭제

  #git branch -d name

 

* git branch 확인

  #git branch

 

* git에 소스 올리기(push)

  #git push origin 브랜치명

 

* git branch 전환

  #git checkout -b 브랜치명

 

 

 # 혼자서 작업할거면 브랜치 없이 그냥 master 브랜치에 바로 적용!
 # 만약 팀단위 작업이 필요하면 나만의 브랜치를 만들고 나의 브랜치에 업로드할 것!
 #이후 Pull Request 를 통해 리뷰어에 리뷰 후 Master 브랜치와 Merge가 필요 함!