Git_Local Repo에서 Remote Repo로.

RNR·2021년 8월 25일
0

Git

목록 보기
6/16
post-custom-banner

1.Remote Repository 생성

Github에서 만들기.
(계정 만들고 repo를 만들면 되니 생략!)

Local Repository에서

1.레포지토리가 존재하지 않을 때

git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin (git 주소)
git push -u origin main
  1. 이미 레포지토리가 존재할때
git remote add origin (git 주소)
git branch -M main
git push -u origin main
profile
개인적 공부 기록. 그때그때 메모합니다.

0개의 댓글