fatal: Could not read from remote repository.Please make sure you have the correct access rights and the repository exists.1. 키 확인ls -al ~/.ssh 2. 새 SSH 키 생성ssh-keygen -t ed25519 -C "your_email@example.com" 3. 깃허브에 SSH 공개 키 추가cat ~/.ssh/id_ed25519.pub- 이후 `GitHub 설정 > SSH and GPG keys > Add SSH Key` 진행 4. SSH 에이전트 시작 및 키 추가- ssh-agent를 백그라운드에서 시작eval "$(ssh-agent -s)" - SSH 개인 키를 ssh-agent에 추가ss..