ship
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseContext
背景信息
- Current git status: !
git status - Current git diff (staged and unstaged changes): !
git diff HEAD - Current branch: !
git branch --show-current - Recent commits: !
git log --oneline -10
- 当前git状态: !
git status - 当前git差异(已暂存和未暂存的变更): !
git diff HEAD - 当前分支: !
git branch --show-current - 最近提交记录: !
git log --oneline -10
Your task
你的任务
Ship the current changes by following these steps in order:
按照以下步骤依次发布当前变更:
1. Create a branch if needed
1. 按需创建分支
If on , create and checkout a new descriptive branch based on the changes.
master如果当前在分支上,请基于现有变更创建一个描述性的新分支并切换到该分支。
master2. Commit
2. 提交代码
Stage all changed files and create a single commit with an appropriate message. If is provided, use it as the commit message.
$ARGUMENTS暂存所有已修改的文件,并创建一条带有合适信息的提交记录。如果提供了,则将其用作提交信息。
$ARGUMENTS3. Run CI
3. 运行CI
Run and wait for it to complete. This is mandatory — do not skip it.
bin/ci- If fails: stop here. Show the failure output and suggest fixes. Do NOT push or create a PR.
bin/ci - If passes: continue to step 4.
bin/ci
执行并等待其完成。此步骤为必填项——请勿跳过。
bin/ci- 若执行失败:在此处停止操作。展示失败输出并建议修复方案。请勿推送代码或创建PR。
bin/ci - 若执行成功:继续执行步骤4。
bin/ci
4. Open a PR
4. 创建PR
bin/cigh pr createbin/cigh pr create