How to apply a composer patch provided by Adobe
- Topics:
- Cache
This article instructs how to apply a composer patch for Adobe Commerce on-premises, Adobe Commerce on cloud infrastructure, and Magento Open Source.
How to apply a composer patch for Adobe Commerce on cloud infrastructure
-
If you do not have a directory named
m2-hotfixesin the project root, please create one. -
Copy the
%patch_name%.composer.patchfile(s) to them2-hotfixesdirectory. -
Add, commit, and push your code changes:
git add -Agit commit -m "Apply %patch_name%.composer.patch patch"git push origin
For additional information about applying patches to Cloud projects, see Apply patches in our developer documentation.
How to apply a composer patch for Adobe Commerce on-premises and Magento Open Source
-
Upload the patch to your Adobe Commerce on-premises or Magento Open Source root directory.
-
Run the following SSH command:
patch -p1 < %patch_name%.composer.patch(If the above command does not work, try using
-p2instead of-p1) -
For the changes to be reflected, refresh the cache in the Admin under System > Cache Management.