invalidusername
Invalid username or password. fatal: Authentication failed for ''
갑자기 회사 깃헙 레포지토리에서 pull도 push도 안 됨. 아래와 같은 에러내역이 떴다. remote: Invalid username or password. fatal: Authentication failed for 'https://github.com/company/repository.git/' 이게 뭐지... 토큰 인증이 만료됐나? 아직 그럴 시기는 아닌데... 심지어 토큰 인증 만료와는 에러메시지가 다르다. 구글링을 해 보니 아래 명령어를 써서 인증정보를 리셋하고 다시 세팅하면 된다고 해서 입력해 보았다. git config --system --unset credential.helper git config --global --unset credential.helper 전역인 경우 --global을..