git add와 commit 후 push를 하려는데 아래와 같은 에러가 발생
error: src refspec master does not match any
push하는 사용자가 누구인지 정의가 되지 않아서 발생한 오류로 확인
아래와 같이하여 해결됨
$ git config --global user.name hyen4110
$ git config --global user.email hyen4110@tistory.com
<총 정리>
$ git init
$ git add .
$ git commit -m "add faiss"
$ git config --global user.name hyen4110
$ git config --global user.email hyen4110@tistory.com
$ git push -u origin main
'Engineering > 에러 해결 모음' 카테고리의 다른 글
[에러] OSError: Can't load config for 'klue/bert-base' (0) | 2023.05.12 |
---|---|
[에러] AttributeError: module 'torch.distributed' has no attribute '_reduce_scatter_base' (0) | 2023.05.12 |
[Error] A load persistent id instruction was encountered (0) | 2023.01.12 |
[Error] EOFError : Ran out of input (0) | 2022.12.12 |
[VSCode] SSH 원격 서버 연결 오류 반복 (0) | 2022.12.02 |
댓글