I'd need to create simple patches from git repository that can be applied with plain simple patch command line utility.
Can it be done?
I'd need to create simple patches from git repository that can be applied with plain simple patch command line utility.
Can it be done?
Patches, that git diff
yields, are correctly processed by patch
tool.
patch
skips all the additional info git appends to the patch file. To apply the patch you most likely will need -p1
option.