I have started working on Golang project. While building with make, I am getting following error:
fatal: could not read Username for 'https://github.com': terminal prompts disabled
To handle this, I have done following after going through similar post go get results in 'terminal prompts disabled' error for github private repo :
export GIT_TERMINAL_PROMPT=1
But this did not solve the problem, now it seems to be asking username and password in infinite loop.
My git config is as follows:
$git config --list
remote.origin.url=git@github.com:GolangProjects/Project1.git
Even after this config, why it keeps on using https instead of SSH, not getting any clue. Please help.