Git 08
Git 08
GitHub 연동
가입 후 초기설정
-
Personal access token 설정
-
프로필 - Settings - Developer Setting
-
Personal Access tokens - Generate new token
-
원하는 기간, 기능 체크 후 Generate token
-
토큰 키 복사
-
자격 증명 관리자 - Windows 자격 증명
-
일반 자격 증명에 git:https://@github.com 자격 정보 생성
-
사용자 이름 : Github 이름
-
암호 : 토큰 키
GitHub Repository 생성 후 연결
기존 main branch가 존제한다는 가정 하에 진행
없을 경우, github repository 생성 후 띄어주는 가이드에서 처럼 하나의 commit을 만들어서 main branch를 생성한 후 진행
git remote add origin (주소(Https))
Git의 원격 저장소를 추가, 이름은 Origin
git push -u origin main
# 또는
git push --set-upstream origin main
오류 발생
solution 01
# 위 코드가 안먹을 때, 강제로 맞춰주는 방법이 있음 (협업 중 사용 자제)
# [참고] https://dewworld27.tistory.com/122
git push origin +main
git fetch origin main
git push -u origin main
solution 02
# [참고] https://velog.io/@johoon815/Git-rejected-master-master-fetch-first-git-push-%EC%97%90%EB%9F%AC
git pull main origin
git push (https://..../.git)
로컬 저장소의 커밋 내역을 원격으로 push
main과 origin을 연결(upstream)
# 원격 Branch 목록 확인
git remote
# 원격 Branch 삭제
git remote remove (branch)
Gitbub에서 프로젝트 다운로드
git clone (주소)
댓글남기기