github에서 소스 가져오기 에러 해결 방법 (Permission denied)
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/