bower install 에러
github code pull download error, git clone error, git 인증, github auth
//-------------------------------------
- 에러 메시지
fatal: Could not read from remote repository. git@github.com: Permission denied (publickey).
//-----------------------------------------------------------------------------
- 해결 방법 1 : 토큰 입력
$ sudo apt install gh
$ gh auth login
https 로그인 선택
- 토큰 정보
https://github.com/settings/tokens
토큰 권한 : 'repo', 'read:org', 'workflow'
//-------------------------------------
- 해결 방법 2 : ssh
- 접속 테스트
ssh -vT git@github.com
- SSH agent 시작
ssh-agent -s
- 키 찾기
ssh-add -l -E sha256
- 키 생성
ssh-keygen -t rsa -b 4096 -C "깃허브 계정 이메일"
- 등록
ssh-add ~/.ssh/id_rsa
- 확인
cat ~/.ssh/id_rsa.pub
- github.com 설정 - 키 등록
- Settings -> Access : SSH and GPG keys -> New SSH key ->
C:\Users\userID\.ssh\id_rsa.pub 파일 내용 붙혀넣기
//-------------------------------------
// 참고
https://docs.github.com/en/authentication/troubleshooting-ssh/error-permission-denied-publickey
https://careerkarma.com/blog/git-permission-denied-publickey/
'Code' 카테고리의 다른 글
git 기본 브랜치 이름 변경 설정 (0) | 2022.08.04 |
---|---|
2022 개발자 설문 조사 프로그래밍 언어 사용 순위 (0) | 2022.07.20 |
PowerShell 이용한 레지스트리 처리 (와일드 카드 사용 가능) (0) | 2022.06.14 |
ASCII 코드표 (0) | 2022.04.26 |
git 에러 fatal: unsafe repository owned by someone else 해결 방법 (0) | 2022.04.15 |