我们经常发布文档更新,此页面的翻译可能仍在进行中。有关最新信息,请访问英文文档。如果此页面上的翻译有问题,请告诉我们
文章版本: Enterprise Server 2.15

此版本的 GitHub Enterprise 将停止服务 此版本的 GitHub Enterprise 已停止服务 2019-10-16. 即使针对重大安全问题,也不会发布补丁。 For better performance, improved security, and new features, upgrade to the latest version of GitHub Enterprise. For help with the upgrade, contact GitHub Enterprise support.

添加远程

要新增远程,请在终端上存储仓库的目录中使用 git remote add 命令。

git remote add 命令使用两个参数:

例如:

$ git remote add origin https://主机名/user/repo.git
# Set a new remote

$ git remote -v
# Verify new remote
> origin  https://主机名/user/repo.git (fetch)
> origin  https://主机名/user/repo.git (push)

不确定要使用哪个 URL? 查阅“我应使用哪个远程 URL?

故障排查

尝试添加远程时可能会遇到这些错误。

远程 name 已存在

此错误消息表示您尝试添加的远程与本地仓库中的远程名称相同:

$ git remote add origin https://主机名/octocat/Spoon-Knife
> fatal: remote origin already exists.

要修复此问题,您可以

延伸阅读

问问别人

找不到要找的内容?

联系我们