Created
April 20, 2015 15:09
-
-
Save frosforever/65ef09b6a137209a2341 to your computer and use it in GitHub Desktop.
Git Patching
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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