如何使用已导入存储库的 bzr 从 svn 存储库仅获取最近的更新

发布于 2024-10-10 19:10:37 字数 412 浏览 8 评论 0原文

我曾经使用 bzr 从 svn 存储库中从 google 获取存储库,现在

bzr svn-import http://feedparser.googlecode.com/svn/ feedparser
cd feedparser
bzr branch trunk mybranch
cd mybranch
bzr checkout

存储库 svn 存储库 ( http:// feedparser.googlecode.com/svn/ )有一些我想要获取的新更新,但由于我更改了本地存储库(即本地计算机上的 bzr 存储库)中的一些文件,我如何获取并合并更新使用 bzr 进行更新而不丢失更新和我的更改?

I once did a repository fetch from google using bzr from a svn repo like this

bzr svn-import http://feedparser.googlecode.com/svn/ feedparser
cd feedparser
bzr branch trunk mybranch
cd mybranch
bzr checkout

now the repository svn repo ( http://feedparser.googlecode.com/svn/ ) has some new updates that i want to fetch but since I changed some files in my local repo ( i.e. the bzr repo on my local machine ) how can I fetch and merge the updates with my update using bzr without loosing the update and my changes?

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

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

发布评论

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

评论(3

何必那么矫情 2024-10-17 19:10:37

使用 pull 命令:

cd trunk
bzr pull http://feedparser.googlecode.com/svn/

或者甚至

cd trunk
bzr pull

后者第一次可能无法工作,但下次使用显式 URL 进行拉取时会工作。

拉取完成后,您可以简单地将更改从 trunk 合并到 mybranch:

cd ../mybranch
bzr merge ../trunk

合并后检查更改并提交结果。

Use pull command:

cd trunk
bzr pull http://feedparser.googlecode.com/svn/

or even

cd trunk
bzr pull

The latter may not work first time, but will work next time you do pull after pull with explicit URL.

After pull finished you can simply merge the changes from trunk into mybranch:

cd ../mybranch
bzr merge ../trunk

Inspect changes after merge and commit the result.

葬花如无物 2024-10-17 19:10:37

您是否尝试过 bzr update 它会合并来自上游存储库的更改。

Did you try bzr update it will merge back changes from the upstream repository.

世俗缘 2024-10-17 19:10:37

您可以再次对导入的存储库执行 svn-import ,它将仅获取新的修订版本。

You can do a svn-import again to the imported repository, it will fetch only the new revisions.

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