본문 바로가기
git

[Git] git 원격저장소 연결하기

by clolee 2022. 8. 18.

github에 원격 저장소 생성하기

 

 

 

셋업 방법

echo "# market-bapp-private" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/seowlee/market-bapp-private.git
git push -u origin main
git remote add origin https://github.com/seowlee/market-bapp-private.git
git branch -M main
git push -u origin main

 

 

로컬 저장소에 원격저장소 등록하기

 

로컬에서 원격저장소로 push 할 파일들이 있는 위치로 이동하기

아래 명령어를 통해 로컬 저장소에 원격저장소 등록하기

git remote add origin https://github.com/seowlee/market-bapp-private.git

 

 

현재 브랜치를 main으로 강제 이동시키기

git branch -M main

아래 명령어를 통해 현재 브랜치 확인해보기

git branch

 

 

git add

Working Directory에서 작업한 파일들을 staging Area로 옮기기

 

그 전에 상태 확인해보기

git status

 

수정된 파일들 add 하기

git add .

 

 

git commit

staging Area에 저장된 변경사항을 local repository에 등록 (변경사항 확정)

// git commit -m "커밋메시지"
git commit -m "Market BApp for deployment to production"

 

 

git push

commit 이력을 github remote repository에 업로드

push를 통해 로컬 저장소와 원격저장소의 상태가 같아짐

git push -u origin main

 

 

github 원격저장소로 이동해 확인

 

 

참고 :

https://chancoding.tistory.com/76

https://velog.io/@falling_star3/GitHub-git-add-commit-push-status-%EB%A1%9C%EC%BB%AC%EC%97%90%EC%84%9C-%EC%9B%90%EA%B2%A9%EC%A0%80%EC%9E%A5%EC%86%8C%EB%A1%9C-%ED%8C%8C%EC%9D%BC-%EC%97%85%EB%A1%9C%EB%93%9C%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95

https://inpa.tistory.com/entry/GIT-%E2%9A%A1%EF%B8%8F-%EA%B9%83%ED%97%99-%EC%9B%90%EA%B2%A9-%EC%A0%80%EC%9E%A5%EC%86%8C-%EA%B4%80%EB%A6%AC-git-remote

 

 

'git' 카테고리의 다른 글

[Git] git 특정 커밋 다운  (0) 2024.05.08
[Git] git clone change directory name  (1) 2024.01.03
[Git] 강제 pull 하기  (0) 2023.11.02
[Git] git clone 특정 브랜치  (0) 2023.11.01

댓글