We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
##Create a new patch
git checkout -b <branch name>
git commit -am "fix"
git diff <original branch name> <new branch name> **>** <patch file name>
Original branch name is usually the module's version. Patch file name format : <issue#>-<description>-<comment#>.patch For example:
<issue#>-<description>-<comment#>.patch
git diff 7.x-1.x fix-alert > 974338-node-notify-mailalert-17.patch
##Apply a patch
git apply <path file>