如何使用 svn 命令合并特定文件
有没有办法在两个分支之间使用合并命令来合并一组特定的扩展 例如:- 我只想合并“.jsp”扩展名或我选择的任何扩展名
svn merge https://www.test.com/branches/a1/*.jsp https://www.test.com/branches/a2/*.jsp
Is there any way to merge a specific set of extesnion using merge command between two branches
eg:- i want to merge only ".jsp" extension or any extension of my choice
svn merge https://www.test.com/branches/a1/*.jsp https://www.test.com/branches/a2/*.jsp
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有本地副本,则可以编写带有
for
循环的 shell 命令,为每个文件发出单独的svn merge
,例如If you have a local copy, then you can write a shell command with a
for
loop to issue a separatesvn merge
for each file, something like只需将所有内容合并到您的工作副本中,然后还原每个修改/添加/删除的非 .jsp 文件,然后提交。
Just merge everything to your working copy, then revert every modified/added/removed file that is not a .jsp file, and commit.