aboutsummaryrefslogtreecommitdiff
path: root/posts/git-patches.md
diff options
context:
space:
mode:
Diffstat (limited to 'posts/git-patches.md')
-rw-r--r--posts/git-patches.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/posts/git-patches.md b/posts/git-patches.md
index e7037e0..5b5d951 100644
--- a/posts/git-patches.md
+++ b/posts/git-patches.md
@@ -16,9 +16,9 @@ Next, locate the email patch in Evolution and right-click on it. Select "Save as
Now simply open your terminal, navigate to your project and run:
-```sh
+~~~sh
git am <path-to-patches-folder>/<patch-filename>.mbox
-```
+~~~
This should apply the patch directly to your project without issue. You are now free to test these changes locally. If everything looks good, you're able to instantly push these changes remotely.