arc land失败,出现EXCEPTION:(CommandException)命令失败,错误#1

时间:2015-10-07 13:55:52

标签: git bash phabricator

我试图通过Phabricator与远程原点分支登陆本地分支。 当我尝试着陆时,我收到以下错误

[2015-10-07 13:47:25] EXCEPTION: (CommandException) Command failed with error #1!
COMMAND
git pull --ff-only --no-stat

STDOUT
(empty)

STDERR
bash: /dev/tty: No such device or address
error: failed to execute prompt script (exit code 1)
fatal: could not read Password for 'http://xxxxx@localgitrepository': Invalid argument

它与我的旧笔记本电脑配合得很好,但是我最近换了一台新的笔记本电脑,但是电弧差异工作,但登陆并没有。帮助赞赏

1 个答案:

答案 0 :(得分:1)

在旧计算机上,您可能已经安装了ssh,因此您可以从ssh:// git @ localgitrepository进行克隆。因为这是脚本并且遇到密码提示,所以无法提供密码。您有两个选择:

  1. 更改远程网址以使用ssh git remote set-url origin ssh://git@localgitrepository
  2. 为Arcanist设置用户连接,并在.arcconfig文件中设置用户名和密码。 (More information can be found here。)