1
I have an ASP.NET versioned project on Github and while trying to do one push the following error is returned:
fatal: could not read Username for 'https://github.com': terminal prompts disabled
Does anyone have any tips?
1
I have an ASP.NET versioned project on Github and while trying to do one push the following error is returned:
fatal: could not read Username for 'https://github.com': terminal prompts disabled
Does anyone have any tips?
1
This error occurs when the git
need ask the user name and password, but the only mechanism to ask for the user and password is the console and there is no console available.
This usually occurs when you are using some software over the git
(in your case, I believe it would be Visual Studio) and have something incorrect or missing set up on the credentials part.
You can solve the problem as follows:
If you are not using any tool, try use this command on the console and try again to do the push
:
env GIT_TERMINAL_PROMPT=1
Browser other questions tagged git github
You are not signed in. Login or sign up in order to post.
I removed the tag,
asp.net
because the problem is with GIT or Github, it has nothing to do with the project being ASP.NET.– Jéf Bueno
What version of Git?
– Jéf Bueno
Complete push command is missing
– Sveen
There’s no full push command, I’m actually using the github plugin for visual studio, when doing git in hand works normally.
– RONALDO VIPER
So it’s probably the plugin’s configuration, nothing to do with git itself. Read the plugin documentation, about the settings, and see if you stopped doing any steps.
– Woss
It might have something to do with Git... You need to upgrade to the latest version for security reasons. .
– egomesbrandao