Be verbose

This commit is contained in:
Oliver Davies 2015-05-19 10:28:25 +01:00
parent b1a900a0d4
commit 347fe76db6

View file

@ -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: 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: 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). These commands need to be run within the root of your Git repository (i.e. where the .git directory is).