Question
How to Create and Apply Patches in GIT using diff and apply Command
Create Patch:git diff PATH/TO/SOURCE.php > PATH/SAVE_patch.diff
Apply patchgit apply PATH/SAVE_patch.diff
Reversing patches
To revert a patch simplt add the option -R
Example:git apply -R PATH/SAVE_patch.diff
More Info : http://www.thegeekstuff.com/2014/03/git-patch-create-and-apply/
Add new comment