Step {{ activeStepIndex + 1 }} / {{ activeScenario.steps.length }}
{{ activeStep.title }}
{{ activeStep.cmd }}
你通常会看到:
{{ activeStep.output }}
为什么:
{{ activeStep.why }}
注意:
{{ activeStep.warn }}
最容易踩坑的 3 件事
-
先看状态再动手:每次操作前先跑一次
git status。 -
只提交“你想提交的东西”:用
git add path精准暂存,别习惯性git add .。 - 撤销要分层:没进暂存 / 进了暂存 / 已经 commit,命令完全不同。