[Git] "fatal: could not read username for no such device or address" 해결
Colab에서 모델 학습을 위한 프로젝트 clone 도중 마중한 에러이다.내로라 하는 방법은 모두 시도해보았으나 다 실패하였다. 1. osxkeychain -> 애초에 colab 실행 환경이 osx가 아니어서 그런지 명령어 실행이 잘안됨2. git config 설정git config --global user.name {your_name}git config --global user.email {your_email}역시 설정 이후에도 같은 에러 발생 3. git remote origin 명시적 설정git remote add origin https://{username}:{password}@github.com/{username}/project.gitgit remote set-url origin https:/..
2024.11.20