꿈을 향해 on my way
GitHub SSH "Permission Denied" Error 본문
When cloning github repository, “Permission Denied” error occurred. You need SSH key generated and the public key under id_rsa.pub should be added to your github account.
- Generate SSH key
ssh-keygen
This will generate two files in the ~/.ssh directory within your home.
- ~/.ssh/id_rsa
- ~/.ssh/id_rsa.pub
2. Add public key in Github account
- Copy the content of the newly-generated id_rsa.pub file.
- Go to github.com/settings/keys
- Create new SSH key
- Paste the public key content (copied from step a)
'데이터 사이언스 공부' 카테고리의 다른 글
첫번째 PR 리뷰 (0) | 2022.12.10 |
---|---|
How to Melt Multi-index Column (0) | 2022.07.24 |
Git LFS 무료 데이터 초과 문제 공짜로 해결하기 - DVC (Data Version Control) (2) | 2022.07.23 |
Pandas - json_normalize 문제 총 정리 (0) | 2022.04.02 |
복잡한 JSON 파일 쉽게 처리하기 - 파이썬 (How to flatten complex JSON file in Python) (0) | 2022.04.02 |
Comments