Git Bash 로 원격 저장소에 push 에러
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 가능하다. 단, 원격저장소의 변경사항을 로컬저장소의 내용과 합치기 위해서 ..
Archive/★ Git
2014. 3. 17. 00:31