Question
How to Create and Apply Patches in GIT using diff and apply Command
Solution
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
Comments