[git] commit failed - exit code 128 received, with output

1. 발생 문제

깃허브 데스크탑에서 커밋하다 다음과 같은 에러가 발생했다. commit_error_img

2. 해결법

  1. 옵션-git 에 들어가 이메일을 다시 입력하고 save -> 실패 email_save

  2. 위와 같지만 Git Bash를 이용해 직접 명령 -> 실패
    git config --global user.email "you@example.com"
    git config --global user.name "Your Name"
    

    https://stackoverflow.com/questions/47461612/commit-failed-exit-code-128-received

  3. ** gpg 설정 변경-> 성공**
    git config --global commit.gpgsign false https://stackoverflow.com/questions/47461612/commit-failed-exit-code-128-received

카테고리:

업데이트: