Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 505 Bytes

RELEASE_HOTFIX.md

File metadata and controls

14 lines (10 loc) · 505 Bytes

Prepare a hotfix

  • Create a hotfix branch: git checkout -b hotfix-vX.Y.Z
  • Make changes to the code and/or cherry-pick changes from another branch and commit changes.
  • Test the hotfix and binaries.
  • Release a new Mark Text version.

How to cherry pick?

You can pick commits from another branch and apply the commit to the current one.

  • git checkout hotfix-vX.Y.Z
  • git cherry-pick <full commit hash>
  • Please resolve all conflicts and git commit the changes if needed.