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 했을 때 기록된다.
'# Back-End > Git' 카테고리의 다른 글
[Git] Git Commit을 되돌리기(+ Rebase로 커밋 히스토리 관리하기) (0) | 2022.10.01 |
---|---|
[Git] 브랜치 Merge와 커밋 히스토리 관리 (squash, rebase) (0) | 2022.07.31 |
[Git] Git Flow 전략 (0) | 2021.11.04 |
[Git] remote url 변경 (0) | 2021.10.11 |
[Git] Commit message 작성 규칙 (0) | 2021.05.26 |
[Git] fatal: couldn't find remote ref master (0) | 2021.01.20 |
[Git] local 날라가도 괜찮을 때 강제로 Pull 하기 (0) | 2020.10.07 |