Unable to submit solutions

When attempting to submit my solution, I am greeted by the following error:

___@arch in ~/codecrafters-http-server-elixir
$ codecrafters submit
commit changes: create commit: error: Couldn’t get agent socket?

fatal: failed to write commit object
. Error: exit status 128

The only alteration made to the provided code so far has been the uncommenting of the required lines.

Hey @j-alexander3375, looks like Git is trying to sign commits with GPG, but the GPG agent socket is unavailable.

Could you try running:

git config --show-origin commit.gpgsign

and share the output? That’ll help us figure out the next step.

Thank you @andy1li , here are the results from the commend you’d sent:

file:/home/_35p/.config/git/git-credentials true

Thanks for sharing the output! You can disable commit signing with:

git config --global commit.gpgsign false

Then try submitting again and please let me know how it goes.

Awesome! That worked perfectly, and I’ll be sure to keep it in mind lest a similar issue rises again. Thank you! @andy1li