mirror of
https://github.com/marktext/marktext.git
synced 2025-05-02 10:30:29 +08:00

* Removed the space in 'Mark Text' (#2763) Literally just replaced all occurances of 'Mark Text' with 'MarkText' using sed. This is directly related to #2763. * Revert changes to .github directory Reverted changelog etc. * Added `cs` alias for `csharp` in code blocks (Fixes #2760) * Added error handler in the renderer process (should fix #2758) The `src/muya/lib/contentState/clickCtrl.js` file will now return if `document.querySelector` fails to find an element.
15 lines
504 B
Markdown
15 lines
504 B
Markdown
# 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](RELEASE.md) a new MarkText 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.
|