在Powershell控制台中,键入
时git remote add github https://github.com/myusername/myrepo.git
git push -u github master
Powershell提示
Username for 'https://github.com':
但我无法输入任何答案,因为任何按键似乎都没有响应,这是正常的吗?
注1:我使用github作为远程名称,因为我已经使用origin来推送到bitbucket
注意2:我在Windows 10上并安装了Posh-Git
答案 0 :(得分:3)
您可以使用以下方式使流程成为非交互式:
在网址中使用您的用户名:
git remote add github https://myusername@github.com/myusername/myrepo.git
using a git credential helper将store your password为您
git config --global credential.helper wincred