ex) cd ./port-folio
git init
프로젝트를 연결 할 github repository 생성(README 등 파일 생성 없이 빈 레포지토리로 생성 권장)
README 파일을 생성하면 최초 커밋 시 파일 기록이 달라서 오류발생할 확률 있음.
repository 연결
git remote add origin git@github.com:XXXXXXXX/PortFolio.git
연결된 repo 확인 (fetch / push 주소 확인)
git remote -v
git add . git commit -m '첫번째 커밋' git push origin main
이렇게 진행하면 git에 생성한 repository에 원격 브랜치 main이 생성되며 업로드됨.
출처 : [Git] 기존 프로젝트를 git repository에 연결하기
git remote -v
https://[YourUserGitName]@github.com/[RepositoryGitName]REPOSITORY.git 리스트가 뜨는지 확인
출처 : [Git] The requested URL returned error: 403 Push 에러 해결 방법
git pull origin 브런치명 --allow-unrelated-histories
출처 : Git push가 안되는 경우