2017-07-14 77 views
1

我需要在同一台机器上实现多个bitbucket帐户。同一台机器上的多个bitbucket帐户

我设置的用户名和电子邮件,但是在本地没有工作

的git:“credential- [在这里展示全球用户]”不是一个git命令。参见'git --help'。 远程:未经授权 致命的:身份验证失败“https://[email protected]/xyz/xyz.git/

+0

设置用户'git config --global user.name“UserName”' –

+0

哪个操作系统? –

+0

窗口10 64位, –

回答

2

我设置我的远程URL与我的密码 这里解决此问题,您可以检查

git remote -v 
origin https://[email protected]/REPOSITORY.git (fetch) 
origin https://[email protected]/REPOSITORY.git (push) 

立刻设置远程URL这样

git remote set-url origin USERNAME:[email protected]/REPOSITORY.git 

,它现在在每个命令混帐从来没有问你密​​码

相关问题