How to create patch between two tags by git

C reate patch between tag1 and tag2

1
git diff --binary tag1 tag2 -- > /the/path/of/patch/release.patch

Apply git patch

1. List file list of this patch to preview files to update

1
git apply --stat /the/path/of/patch/release.patch

2. Do patch!

1
git apply /the/path/of/patch/release.patch

Add --whitespace=nowarn option to ignore whitespace warning