Create and Apply Patches using GIT DIFF and APPLY | Drupal 8

Create and Apply Patches using GIT DIFF and APPLY

Submitted by editor on Tue, 02/16/2016 - 10:46
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 patch
git 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/

Tags

Add new comment

Plain text

  • No HTML tags allowed.
  • Lines and paragraphs break automatically.
  • Web page addresses and email addresses turn into links automatically.