개발자 끄적끄적
git hub 연결/해제 본문
1. 깃허브 연결 해제
1) 연결되어 있는 원격 저장소 확인 : git remote -v
2) 원격 저장소 연결 해제 : git remote remove origin
3) 해제 상태 확인 : git remote -v
2. 깃허브 레포지토리 연결
1) 원격 저장소 연결 : git remote add origin http://gitub.com/계정명/레포지토리명.git
2) main(깃허브 기본 저장소 브랜치명) branch 생성 : git branch -M main
3) main branch origin에 push : git push -u origin main
<error:failed to push some refs to 'repository 경로' 에러 해결>
git pull
git add .
git commit -m "~~"
git push