Git Help? How to build a patch from commits
This is more of a question post than a learning post, so your feedback is welcomed. Here is what I am trying to do. I have several commits into a branch and I would like to build a patch file that has all the files that where changed from commit X to commit Y. Example:
Commit 1 – Changed files
/plugins/BeanFactory.cfc
/interceptors/SES.cfc
Commit 2 – Changed files
/interceptors/SES.cfc
/interceptors/Security.cfc
Commit 3 – Changed files
/web/services/PluginService.cfc
Now I want to run SOMETHING or do SOMETHING automated that can produce the following patch:
PATCH
/plugins/BeanFactory.cfc
/interceptors/SES.cfc
/interceptors/Security.cfc
/web/services/PluginService.cfc
So any Git gurus can comment on how to achieve this.