feat: add next-step hints and submodule check to CLI commands

This commit is contained in:
Tiara Rodney 2026-03-20 21:20:58 +01:00
parent fd2c8ba640
commit 6a36497205
Signed by: tiara
GPG key ID: 5CD8EC1D46106723
7 changed files with 36 additions and 1 deletions

View file

@ -55,6 +55,7 @@ export class StartCommand extends CLICommand {
)
console.log(`Issue #${issue.id} is now in-progress`)
console.log(`Create the issue branch: git checkout -b ${issueBranch}`)
console.log(`If working in a submodule, also checkout there: cd <submodule> && git checkout -b ${issueBranch}`)
return 0
}
}