[Git] fatal: unable to auto-detect email address
·
Error
ubuntu 18.04에서 git으로 작업을 하던 도중 아래와 같은 메세지가 뜨며 오류가 발생했다. 문자 그대로 git에서 이메일과 이름을 자동적으로 감지하지 못해서 일어나는 현상이였다. 아래 명령어를 통해 전역적으로 이메일과 이름을 설정해주자. git config --global user.email "git에서 사용하는 이메일 주소" git config --global user.name "git에서 사용하는 유저 이름"
[Error] The unauthenticated git protocol on port 9418 is no longer supported
·
Error
github에서 pull, push시 또는 작업시에 나는 오류 원인 2022년 1월 11일 부터 GitHub는 더 이상 사용되지 않는 키 및 서명 유형, 암호, MAC 및 암호화되지 않은 Git 프로토콜 수락을 중단했다. 그래서 이것들 중 하나를 사용하는 경우 The unauthenticated git protocol on port 9418 is no longer supported이라는 오류가 발생한다. 해결방법 1. 깃허브의 프로토콜을 git에서 https로 변경한다. cmd 또는 shell에서 입력 git config --global url."https://github.com/".insteadOf git://github.com/ // 또는 git config --global url."https://"..
얼은펭귄
'git' 태그의 글 목록 (2 Page)