Egit 获取 &拉连接被拒绝
我已经在两个 ubuntu 系统上安装了 eclipse 的 Egit 插件,并在两个系统上创建了两个新项目并共享(团队>共享)它。执行 fetch & 的正确方法是什么?使用 Egit 与其他用户拉取项目?
错误连接被拒绝
I've installed Egit plugin for eclipse on two ubuntu systems and created two new project on two sytems and shared(team>share) it. What's the proper way to do fetch & pull projects with other users with Egit?
Error connection refused
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要配置一个新的远程配置,并填充提取和推送 URI。
您需要选择可用协议之一:
如果您刚刚在一台服务器上创建了一个存储库,则需要在另一台服务器中克隆(不需要 Egit),然后“将现有的 Git 存储库添加到此视图中”(Git 存储库视图):这样,第一个 ( fetch,pull)远程地址已经被设置!
总结以下评论:
但是你需要在服务器端运行一个 git 守护进程,否则没有任何东西会监听你的请求(默认在端口 9418 上完成)。
You need to configure a new remote configuration, with both fetch and push URI filled.
You need to choose one of the available protocols:
If you have just created a repo on one server, you need to clone in the other server (no Egit required), and then "Add an existing Git repo into this view" (the Git Repository view): that way, a first (fetch,pull) remote addresses will already being set!
To summarize the comments below:
But you need to have a git daemon running on the server side, otherwise nothing will listen your request (done by default on port 9418).