Verbose Mode

By default, git reports minimal information on the terminal screen. However, if you are having problems of any kind, it would be helpful to enable verbose mode so we can assist with debugging any issue you may encounter.

export GIT_CURL_VERBOSE=1

To disable verbose mode, use the value 0 in the command

You can also use verbose mode on a command-by-command basis by simply using the -v or —verbose option in your command. For example:

time git clone -v URL [Folder]