From 347fe76db684e361a23dd89f6a36ebc4dc6b48fa Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 19 May 2015 10:28:25 +0100 Subject: [PATCH] Be verbose --- ...-12-24-quickly-apply-patches-using-git-and-curl-or-wget.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_posts/2013-12-24-quickly-apply-patches-using-git-and-curl-or-wget.md b/source/_posts/2013-12-24-quickly-apply-patches-using-git-and-curl-or-wget.md index c9857d8f..c29889ec 100644 --- a/source/_posts/2013-12-24-quickly-apply-patches-using-git-and-curl-or-wget.md +++ b/source/_posts/2013-12-24-quickly-apply-patches-using-git-and-curl-or-wget.md @@ -10,11 +10,11 @@ Testing a patch file is usually a two-step process. First you download the patch You can save time and typing by running the two commands on one line: - $ curl http://drupal.org/files/[patch-name].patch | git apply + $ curl http://drupal.org/files/[patch-name].patch | git apply -v Or, if you don't have curl installed, you can use wget: - $ wget -q -O - http://drupal.org/files/[patch-name].patch | git apply + $ wget -q -O - http://drupal.org/files/[patch-name].patch | git apply -v These commands need to be run within the root of your Git repository (i.e. where the .git directory is).