how to turn off GIT_CURL_VERBOSE?

config, git

Solution

Set the value to `0`:

GIT_CURL_VERBOSE=0

If that doesn't solve it for you (on some installations, `git` seems to check only whether the variable is set, not what its value has), instead try

unset GIT_CURL_VERBOSE

(or open a new shell without the variable declared at all).

Problem

so ever since I set GIT_CURL_VERBOSE=1 now everytime I upload something it gives me long paragraphs of unneeded details. How can I unset this variable/turn off the logging?

Original source