github repositoy에 first commit이 되어 있는 경우(=Initialize this repository with: Add a README file)

이재용·2025년 1월 1일
0
git init
git add
git commit

git remote add origin 주소
git pull origin main
git rebase origin/main  <-로컬 main에서
git push -u origin main

pull, rebase과정이 추가됨

0개의 댓글