I try to do bower install for my project but it throws following error
ECMDERR Failed to execute "git ls-remote --tags --heads https://github.com/functino/jquery-ui-touch-punch.git", exit code of #128 fatal: could not read Username for 'https://github.com': terminal prompts disabled
I tried options suggested in below and from other sites but none work.
https://stackoverflow.com/questions/32232655/go-get-results-in-terminal-prompts-disabled-error-for-github-private-repo
You can, as in here, replace your URLs with
https://<yourGitHubUsername>@github.com/xxx/arepo.gitMake sure you have a credential helper in place (to cache the password)
Type the
git ls-remoteonce (with the URL including your username), and enter your password if requested.Then try
bower installagain.