본문 바로가기

Dev

[git] remote git 최초 설정

자주 사용하는 git

처음부터 설정하고 remote로 push & pull 까지 정리

 


 

1. 원하는 디렉토리 내에서 git repository 생성

 

git init

 

2. user 와 useremail 등록 전 먼저 config list를 확인

 

git config --list

 

등록된 user가 없는 걸 확인 할 수 있다

 

3. 사용할 git user와 user email를 추가해준다

 

git config --{범위} user.name {"name"}
git config --{범위} user.email {email}

 

4. git remote repository 연결 (origin으로)

 

git remote add origin {url}

 

remote 목록 확인

 

git remote -v

 

5. git remote branch 가져오기

 

git fetch origin

 

remote branch 확인

 

git remote -v

 

6. 브랜치 checkout

 

새로운 브랜치 생성 시

 

git checkout -b {branch명}

 

기존 브랜치로 변경 시

 

git checkout {브랜치명}

 

7. .gitignore 작성

 

여기 사용하면 상황에 맞게 알아서 생성 해준다

 

8. git add, commit and push