Last Updated: February 25, 2016
·
702
· dakdad

GIT - Create patch from current diff

git diff --no-prefix > patchfile

You can then apply this patch with:

patch -p0 < patchfile