[Git] 초보 명령어 & 깃허브 프로젝트 가져오기
# Back-End/Git

[Git] 초보 명령어 & 깃허브 프로젝트 가져오기

Github 프로젝트 가져오기

 

 

[세팅 명령어]

git init

git remote add (원격이름) (저장소URL)

 

[commit, push 명령어]

git pull (원격이름) master

git add .

git commit -m "커밋메시지"

git push (원격이름) master

 

EX) 이렇게 쓰세요

git init

git remote add home https://github.com/자기계정/프로젝트명.git

git pull home master

 

git add .

git commit -m "test commit"

git push home master

 

 

 

Git 명령어(위와 같은 내용입니다)

Git 초기화

git init
git clone (저장소URL)
git remote add (원격이름) (저장소URL)

 

 

Git Branch 사용


git branch (브랜치이름) // branch 따기
git checkout (브랜치이름)  // branch 이용

Git 저장소에 반영하기

 

git add  .
git commit -m "커밋메시지"
git push (원격이름) (브랜치이름)

 

Git Branch Merge

 

git checkout master // master 브랜치를 꺼내고

git pull (원격이름) master // 최신화

git merge hoon // master에 작업한 브랜치를 병합

(충돌이 있을 시 확인 후 작업)

 

그외 명령어

 

git remote -v : 원격 목록 확인

git branch : 로컬 저장소 branch 조회

git branch : 원격 저장소 branch 조회

git branch -a : 로컬, 원격 저장소의 branch 조회

git remote remove (원격이름) : 원격 삭제

git branch -d (브랜치이름) : 브랜치 삭제

 

 

TIP

github contribution에는 만든 branch에 push하는 것은 기록되지 않고 master branch에 push하거나 merge 했을 때 기록된다.

 

 

728x90