Hi Devs, I would like to know your ideas around patches that we would like to have. My idea is to use git for the purpose. The following is a set of steps that could help us how to evaluate git patch creation.
STEPS : Add all modified and new files to git's index and commit. Now create the patch: $ git format-patch master You may also split your changes across multiple commits and provide multiple patches. Or You could combine those multiple commits in one single commit and then provide a patch. $ git rebase -i HEAD~no_of_commits Let me know your thoughts for the same. regards, Rahul
