Git Bash 로 원격 저장소에 push 에러
1. fatal: could not read Username for 'https://github.com' 에러 해결
git push origin master
명령을 실행했는데 위와같은 에러 메시지를 만날 수 있을 것이다. 그럼 아래와 같이 remote 저장소를 다시 지정해보도록 하자.
git remote rm origin
git remote add origin ssh://git@github.com/[username]/respo.git
git pull origin master
git push origin master
- 위와 같은 방법으로 원격저장소를 다시 연결해준다면 원격저장소로 push 가능하다. 단, 원격저장소의 변경사항을 로컬저장소의 내용과 합치기 위해서
git pull origin master
명령어를 먼저 수행해 주었다.
2. git bash 의 ssh-key 설정방법