patch - How to do delta extraction from GIT for patching? -
i new git , started working on mobapp
how perform delta level extraction git (provided 'tags' created each change) ?
please let me know various ways accomplish this
thanks sathish kumar
to create individual patches commits since abc
, git format-patch abc
. create 1 patch file per commit. if want see has changed since abc
, git diff abc head
.
Comments
Post a Comment