2014-03-04 45 views

回答

1

這種情況發生時:

  • 你告訴你的芭莎Launchpad的用戶名與bzr lp-login USERNAME
  • ......但是,大巴扎無法驗證它(以USERNAME您的訪問Launchpad上)

您可以使用以下命令查看您的Launchpad用戶名配置:

$ bzr config 
bazaar: 
    [DEFAULT] 
    launchpad_username = the-username-you-set-with-bzr-lp-login 

您可以修復你的SSH密鑰設置(see this discussion),或者你可以刪除launchpad_username設置有:

bzr config --remove launchpad_username --scope=bazaar 

bzr info lp:bzr後應該工作,除非你有其他問題(例如與代理服務器,網絡,防火牆或其他)。

+1

謝謝!我終於找到了罪魁禍首! 這是Cygwin和Git的「ssh.exe」。 我所做的是將它們從環境變量PATH中移除 –