英文:
How to check which files are changed in magento 2 patch?
问题
我已经应用了这个Magento 2补丁:https://experienceleague.adobe.com/docs/commerce-knowledge-base/kb/support-tools/patches/v1-1-18/acsd-46146-two-order-confirmation-emails-are-sent-after-placing-order-from-admin.html?lang=en
我该如何检查这个补丁中具体都做了哪些更改?谢谢。
英文:
I applied this magento 2 patch: https://experienceleague.adobe.com/docs/commerce-knowledge-base/kb/support-tools/patches/v1-1-18/acsd-46146-two-order-confirmation-emails-are-sent-after-placing-order-from-admin.html?lang=en
How can I check what exactly is changed in that patch?
Thanks
答案1
得分: 1
运行以下命令来检查M2补丁中的更改文件:
git apply --stat <patch_file_path>;
将<patch_file_path>替换为您的补丁文件的实际路径。它将显示更改的文件。
英文:
Run the below command to check the changed files in the M2 patch:
git apply --stat <patch_file_path>
Change <patch_file_path> with the actual path to your patch file. it will display the changed files.
答案2
得分: 0
你可以在这里搜索补丁列表 https://github.com/magento/quality-patches/tree/master/patches/os
希望这能帮助到您。
英文:
You can search the patch list here https://github.com/magento/quality-patches/tree/master/patches/os
Hope this can help
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论