集市合并问题2
在我之前关于如何避免合并特定文件的问题中,我收到了答案 看 Bazaar 合并问题
该解决方案正在运行一个解析命令,该命令获取我不知道的特定文件的 .THIS 文件想要合并。 (如 *.hex、*.s19...)
我的问题是如何使解析命令在所有目录中的所有文件上运行,而不制作包含所有目录名称的批处理文件。 (什么可行,但每个项目都需要修改)
PS 我知道 * 代表什么,** 是什么意思?
谢谢
in my previous question on how to avoid merging specific files i received an answer
see
Bazaar merge questions
the solution is running a resolve command that takes the .THIS files for specific files that i dont want to merge. (like *.hex, *.s19...)
My question is how i make resolve command to run on all the files in all directories without making batch file that contains all the directoreis names. (what will work but needs modifications every project)
P.S i know what * is stand for , what is the meaning of ** ?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,它的意思是“子树”。换句话说,子目录及其子目录,以及它们的子目录等。因此,“*/.hex”将匹配当前目录中以及子树中任何位置的所有具有“hex”扩展名的文件那。
If I understand correctly, it means "subtree". In other words, subdirectories and their subdirectories, and their subdirectories, etc. So, "*/.hex" would match all files with the "hex" extension in the current directory and anywhere in the subtree under that.