I have two tags in my git in same branch. There are at least 5-6 commits between them. How can I create a single patch between the two tags so that it can be applied to a Gi
You can create a single patch for multiple commits by using the --stdout option and directing the output to a file:
--stdout
git checkout tag2 git format-patch tag1 --stdout > patch1to2.patch