This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_posts/quickly-apply-patches-using-git-and-curl-or-wget.md
Oliver Davies 85a10c545b Run prettier on all *.md files
```
prettier '{app,source}/**/**.md' --write
```
2020-03-08 17:57:45 +00:00

885 B

title date excerpt tags
Quickly Apply Patches Using Git and curl or wget 2013-12-24 How to quickly download a patch file and apply it to a Git repository in one line
git
drupal-planet

Testing a patch file is usually a two-step process. First you download the patch file from the source, and then you run a separate command to apply it.

You can save time and typing by running the two commands on one line:

$ 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 -v

These commands need to be run within the root of your Git repository (i.e. where the .git directory is).

These snippets were taken from Applying Patches with Git on Drupal.org.