Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 261 Bytes

INTERNAL.md

File metadata and controls

13 lines (11 loc) · 261 Bytes

How to create a patch ?

This section is

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