From 63b9950c28e7fe8c6ae833ec0e2f2bea6dcf3185 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Tue, 9 Dec 2025 20:59:50 +0100 Subject: [PATCH 1/2] feat(applying-patch): improve documentation to also mention git apply as alternative Signed-off-by: Simon L. From 503bd46e89c28d472b0943813d2fb0e950665656 Mon Sep 17 00:00:00 2001 From: Simon L Date: Tue, 9 Dec 2025 21:06:51 +0100 Subject: [PATCH 2/2] feat(applying-patch): improve some details Signed-off-by: Simon L. [skip ci] --- admin_manual/issues/applying_patch.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin_manual/issues/applying_patch.rst b/admin_manual/issues/applying_patch.rst index 93cae94b1fb..dfc084c25fe 100644 --- a/admin_manual/issues/applying_patch.rst +++ b/admin_manual/issues/applying_patch.rst @@ -11,7 +11,7 @@ Patching server 1. Navigate into your Nextcloud server's root directory (contains the ``status.php`` file) 2. Now apply the patch with the following command:: - patch -p 1 < /path/to/the/file.patch + patch -p 1 < ./26396.diff .. note:: @@ -29,7 +29,7 @@ Reverting a patch 1. Navigate to the directory where you applied the patch. 2. Now revert the patch with the ``-R`` option:: - patch -R -p 1 < /path/to/the/file.patch + patch -R -p 1 < ./26396.diff Getting a patch from a GitHub pull request ------------------------------------------