user310291
user310291

Reputation: 38190

Cannot push to github with Powershell

In Powershell Console, when typing

git remote add github https://github.com/myusername/myrepo.git
git push -u github master

Powershell prompt

Username for 'https://github.com':

But I cannot enter any answer as any keypress doesn't seem to respond, is it normal ?

Note 1: I use github as name for remote because I already used origin for pushing also to bitbucket

Note 2: I am on Windows 10 and have installed Posh-Git

Upvotes: 3

Views: 714

Answers (1)

VonC
VonC

Reputation: 1324337

You can make the process non-interactive with:

Upvotes: 3

Related Questions