“git fetch”不起作用

发布于 2024-11-26 17:37:49 字数 728 浏览 0 评论 0原文

[电子邮件受保护]:~porton/texmacs/texmacs-porton .git 是我的存储库,其中包含主存储库的克隆TeXmacs 存储库 git://gitorious.org/texmacs/texmacs.git 包含我的更改(不被主存储库接受)。

我运行以下命令:

$ git clone [email protected]:~porton/texmacs/texmacs-porton.git

$ cd texmacs-porton

$ git fetch --verbose --progress https://git.gitorious.org/texmacs/texmacs.git

最后一个 get fetch 没有输出任何内容,在我看来并没有创建任何新分支。

请帮助我从主 TeXmacs 存储库合并到我自己的存储库。

是git的bug吗?

[email protected]:~porton/texmacs/texmacs-porton.git is my repository containing a clone of the main TeXmacs repository git://gitorious.org/texmacs/texmacs.git with my changes (not accepted to the main repository).

I run the following commands:

$ git clone [email protected]:~porton/texmacs/texmacs-porton.git

$ cd texmacs-porton

$ git fetch --verbose --progress https://git.gitorious.org/texmacs/texmacs.git

The last get fetch outputs nothing and as it seems to me does not create any new branches.

Please help me to merge from the main TeXmacs repository to my own.

Is it a bug of git?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无边思念无边月 2024-12-03 17:37:49

尝试

git remote add official git://gitorious.org/texmacs/texmacs.git
git fetch official
  • 要快得多,fetch 可以创建远程分支
  • git://通过给远程命名

try

git remote add official git://gitorious.org/texmacs/texmacs.git
git fetch official
  • git:// is much faster
  • by giving the remote a name, fetch can create remote branches
南…巷孤猫 2024-12-03 17:37:49

问题可能出在您的网址上。当您应该使用 git:// 时,您却使用了 https:// (这会导致 404)。

以下对我有用:

git fetch git://git.gitorious.org/texmacs/texmacs.git

The problem is likely your URL. You're using https:// (which results in a 404) when you should be using git://.

The following works for me:

git fetch git://git.gitorious.org/texmacs/texmacs.git
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文