Update paths to match Plausible

This commit is contained in:
Oliver Davies 2021-06-30 08:00:00 +01:00
parent fa4a806b9c
commit f025b7b0bd
36 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,31 @@
---
title: Quickly Apply Patches Using Git and curl or wget
date: 2013-12-24
excerpt:
How to quickly download a patch file and apply it to a Git repository in one
line
tags:
- 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:
```language-bash
$ curl http://drupal.org/files/[patch-name].patch | git apply -v
```
Or, if you don't have curl installed, you can use wget:
```language-bash
$ 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](https://drupal.org/node/1399218) on Drupal.org.