配置 git 辅助仓库

发布于 2024-11-07 20:11:30 字数 743 浏览 0 评论 0原文

由于某种原因 git log repo2/master..master -- . 对我不起作用("fatal: bad revision 'repo2/master..master'",这同样适用于 git checkout repo2/master -- .)。我的配置如下所示:

[remote "origin"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = ssh://[email protected]/var/git/me/repo.git
[remote "repo2"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = ssh://[email protected]/var/git/me/repo2.git

我运行 git checkout origin/master -- . 没有问题,因此由于某种原因该问题仅适用于“repo2”。谢谢!

For some reason git log repo2/master..master -- . doesn't work for me ("fatal: bad revision 'repo2/master..master'", the same applies to git checkout repo2/master -- .). My config looks like this:

[remote "origin"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = ssh://[email protected]/var/git/me/repo.git
[remote "repo2"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = ssh://[email protected]/var/git/me/repo2.git

I have no problem running git checkout origin/master -- ., so the problem only applies to "repo2" for some reason. Thanks!

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

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

发布评论

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

评论(1

九歌凝 2024-11-14 20:11:30

repo2 的获取不应该是:

fetch = +refs/heads/*:refs/remotes/repo2/*

Shouldn't the fetch for repo2 be:

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