How to do delta extraction from GIT for patching?

480 views Asked by At

I am new to GIT and we just started working on a MobApp

How to perform a delta level extraction from GIT (provided 'tags' were created for each change) ?

Please let me know the various ways to accomplish this

Thanks Sathish Kumar

1

There are 1 answers

0
David Deutsch On

To create individual patches for all the commits since abc, simply do git format-patch abc. This will create one patch file per commit. If you just want to see what has changed since abc, do git diff abc HEAD.