Skip to content

Instantly share code, notes, and snippets.

@frosforever
Created April 20, 2015 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frosforever/65ef09b6a137209a2341 to your computer and use it in GitHub Desktop.
Save frosforever/65ef09b6a137209a2341 to your computer and use it in GitHub Desktop.
Git Patching
Ref: https://ariejan.net/2009/10/26/how-to-create-and-apply-a-patch-with-git/
git format-patch master --stdout > whatever.patch
git apply --check whatever.patch
git am --signoff < whatever.patch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment