https://stackoverflow.com/questions/75990435/could-not-read-username-for-https-github-com-terminal-prompts-disabled-on-w
Try setting a temporary credential handler for GitHub:
GIT_USER="your-github-username-or-email"
GIT_PASS="PAT"
git config --global credential.helper "!f() { echo \`"username=`${GIT_USER}`npassword=`${GIT_PASS}\`"; }; f"
Or install the github cli and authenticate to github using gh auth login
.
And check out the docs mentioned in the error message for other options:
Git can be configured to authenticate over HTTPS or to use SSH in place of HTTPS. To authenticate over HTTPS, you can add a line to the $HOME/.netrc
file that git consults:
machine github.com login USERNAME password APIKEY
For GitHub accounts, the password can be a personal access token.
Git can also be configured to use SSH in place of HTTPS for URLs matching a given prefix. For example, to use SSH for all GitHub access, add these lines to your ~/.gitconfig
:
[url "ssh://[email protected]/"]
insteadOf = https://github.com/
标签:Username,GIT,HTTPS,disabled,github,authenticate,https,com
From: https://www.cnblogs.com/gongxianjin/p/18098725