start-hotfix

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Pre-operation Checks

操作前检查

Verify working tree is clean per
${CLAUDE_PLUGIN_ROOT}/references/invariants.md
.
根据
${CLAUDE_PLUGIN_ROOT}/references/invariants.md
验证工作区是否干净。

Phase 1: Start Hotfix

阶段1:启动热修复

Goal: Create hotfix branch using git-flow-next CLI.
Actions:
  1. Run
    git flow hotfix start $ARGUMENTS
  2. Update version in project files (package.json, Cargo.toml, VERSION, etc.)
  3. Commit version bump:
    chore: bump version to $ARGUMENTS
    with
    Co-Authored-By
    footer
  4. Push the branch:
    git push -u origin hotfix/$ARGUMENTS
目标:使用git-flow-next CLI创建热修复分支。
操作步骤
  1. 运行
    git flow hotfix start $ARGUMENTS
  2. 更新项目文件中的版本号(package.json、Cargo.toml、VERSION等)
  3. 提交版本号更新:
    chore: bump version to $ARGUMENTS
    ,并添加
    Co-Authored-By
    脚注
  4. 推送分支:
    git push -u origin hotfix/$ARGUMENTS