2017-07-14 67 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 

,它現在在每個命令混帳從來沒有問你密​​碼

相關問題