Mission. git hub 연결하고 branch 생성하기
1) 목적
- 팀 프로젝트를 할 때 원활한 협업을 하기 위함
- 내가 생성한 파일의 버전관리를 하기 위함
2) 방법
- github repository 생성 후 초기코드 올리기(대표자 1명만)
- git clone 하기 (대표자 1명 제외 나머지 팀원들)
- Visual Studio Code로 내려 받은 폴더 열고 프로젝트 코드 확인
- branch 생성하기
3) 문제
클론하는 과정에서
remote : Write access to repository not granted , git the requested URL returend error : 403
에러가 발생
4) 시도
- 깃허브 이메일, 이름 제대로 적힌지 확인
it config --list
- 깃허브 이메일, 이름 변경
% git config --global user.name 깃허브이름
% git config --global user.emaiol 깃허브이메일
- 깃 허브 > setting > developer settings > personal access tokens > tokens > repo, admin:org, user에 체크하기
5) 해결
- personal access tokens > tokens > repo, admin:org, user를 체크
- 터미널에 명령어 실행
git -c clone 주소 git checkout -b 생성할 브런치명 git add . git commit -m “테스트커밋메세지” git push origin 브런치명 git remote -v