如何更新已移动的 git-svn 远程分支的路径

发布于 2024-10-18 15:06:04 字数 250 浏览 2 评论 0原文

我已经使用 git 和 git-svn 一段时间了,但是我们已经将 svn 存储库服务器移到了另一个位置。所以我想知道我需要做什么才能让 git 查看新的远程路径,这样我就可以像以前一样继续。我尝试更改配置中的 url 以查看新的存储库,但当我尝试 git svn rebase 时,我只是得到:

无法从工作树历史记录中确定上游 SVN 信息

svn 存储库完全相同但刚刚将位置移动到另一个网址。

提前致谢。

I have been using git and git-svn for a while now but we have moved out svn repository server to another location. So what i am wondering is what to I need to do for git to look at the new remote path so i can continue like before. I have tried changing the url in config to look at the new repo but then when i try git svn rebase I just get :

Unable to determine upstream SVN information from working tree history

The svn repo is exactly the same but has just moved locations to another url.

Thanks in advance.

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

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

发布评论

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

评论(1

可爱暴击 2024-10-25 15:06:04

您需要更改svn-remote.svn.url。您可以像这样查看它

% git config --get svn-remote.svn.url

并像这样设置它:

% git config svn-remote.svn.url http://foo/bar

或通过您的编辑器:

% git config -e

You need to change the svn-remote.svn.url. You can view it like so

% git config --get svn-remote.svn.url

and set it like this:

% git config svn-remote.svn.url http://foo/bar

or via your editor:

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