如何检查Magento 2补丁中更改了哪些文件?

huangapple go评论50阅读模式
英文:

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

huangapple
  • 本文由 发表于 2023年6月6日 15:56:24
  • 转载请务必保留本文链接:https://go.coder-hub.com/76412510.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定