How to create a patch with git diff:
git diff HEAD~2 > changes.diff
How to use it:
patch -Np2 -i changes.diff
thanks to Andy
Just another weblog written by an human
How to create a patch with git diff:
git diff HEAD~2 > changes.diff
How to use it:
patch -Np2 -i changes.diff
thanks to Andy
Uhm…
What about ‘git format-patch’ and ‘git am’ or ‘git apply’ ?