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
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.
abc
git format-patch abc
git diff abc HEAD
To create individual patches for all the commits since
abc
, simply dogit format-patch abc
. This will create one patch file per commit. If you just want to see what has changed sinceabc
, dogit diff abc HEAD
.