0

我在 win7 上使用 git_bash 和 git GUI。

来自git:致命:无法从远程存储库读取

You can specify the username that SSH should send to the remote system as part of your remote's URL. Put the username, followed by an @, before the remote hostname.

git remote set-url website abc@***.com:path/to/repo 

有没有办法从 git gui 而不是命令行中运行上述命令?

4

2 回答 2

0

您可以在添加新遥控器时执行此操作。(ctrl+a 是一个简短的命令,菜单应该类似于 remotes->add remote)。

因此,如果您想在 git-gui 中执行此操作,我想您必须删除遥控器,然后添加一个新遥控器。

但是,该命令是在 git-bash 中执行的一次性操作。我几乎看不出有什么问题。

另一种方法是手动编辑 .git/config ,其中包括遥控器的所有配置。

于 2013-07-01T18:15:22.143 回答
0

有没有办法从 git gui [原文如此!],而不是命令行中运行上述命令?

不。没有可用的远程 URL 编辑。相反,您需要删除远程 URL,然后使用正确的 URL 再次添加它。完毕。

在执行此操作之前触发备份中的快照,以防与远程相比您有未合并的更改。

于 2013-07-08T18:31:23.817 回答