반응형
1. 레파지토리 생성
2.레파지토리 이름설정 및 추가파일 등록
3.레파지토리 주소 확인
4.업로드
업로드 하고자 하는 폴더로 들어가서 - 우클릭- git bash here
5. branch 이름 변경하기
git branch -m master main
6. 레파지토리 연결하기 remote
git remote add origin <리포지토리 주소 자리>
7. 작업 스페이스 초기화 및 푸쉬 선행조건
git pull
git pull origin main --allow-unrelated-histories
git pull origin main --rebase
git add .
git commit -m '(메시지)'
git push origin main
반응형