Are there any alternatives to svn_load_dirs.pl?

半城伤御伤魂 提交于 2019-12-03 08:48:02

You can import the new version to a different directory and then do a 3-URL-merge with --ignore-ancestry.

explained in more detail:

your old version of your vendor branch resides in

/vendor_0.1.1

you import the new version to:

/vendor_0.1.2

you can then merge them to your working copy which is pointing to your working version:

svn merge --ignore-ancestry <URL>/vendor_0.1.1 <URL>/vendor_0.1.2 <PATH_TO_WC>

By doing this, you will compare both versions and apply the difference to your working copy.

Be aware:

As you always import the full version of your vendor branch, Your repository will grow faster

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!