Nice blog on how to create patches in GIT: https://ariejan.net/2009/10/26/how-to-create-and-apply-a-patch-with-git/
To create a patch: *git format-patch sprint-1 --stdout > mychanges.patch* To check a patch (before applying): *git apply --check mychanges.patch* To apply a patch: *git am --signoff < mychanges.patch* Let's use these commands to attach patches to Jira tickets. D.
