Skip to content

Instantly share code, notes, and snippets.

View biennd279's full-sized avatar

Nguyen Dinh Bien biennd279

View GitHub Profile
@biennd279
biennd279 / how-to-git-patch-diff.md
Created February 28, 2024 02:29 — forked from nepsilon/how-to-git-patch-diff.md
How to generate and apply patches with git? — First published in fullweb.io issue #33

How to generate and apply patches with git?

It sometimes happen you need change code on a machine from which you cannot push to the repo. You’re ready to copy/paste what diff outputs to your local working copy.

You think there must be a better way to proceed and you’re right. It’s a simple 2 steps process:

1. Generate the patch:

git diff > some-changes.patch