Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 283 Bytes

File metadata and controls

13 lines (11 loc) · 283 Bytes

How to create a patch ?

This section is

git branch tmpsquash PREVIOUSTAG
git checkout tmpsquash
git merge --squash NEWTAG
git commit --no-verify --no-edit
git format-patch master --stdout > patch_PREVIOUSTAG_to_NEWTAG.patch
git checkout master
git branch -D tmpsquash