diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2026-03-05 13:14:34 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2026-03-05 13:14:34 +0000 |
| commit | b143abb25d6ece32412629baa3e75e94d139979f (patch) | |
| tree | 4ba6a68bd811e081a529e674b93ece02c7090732 /skills/ngit | |
| parent | f3fcf863aae000964753f574b00e9fb9f5fcd452 (diff) | |
refactor(subject): standardise on subject over title in CLI and output
- JSON output fields renamed from title to subject in pr list/view
and issue list/view
- Printed view output changed from Title: to Subject:
- ngit issue create --subject (alias --title)
- ngit send --subject (alias --title)
- Error messages and interactive prompts updated to match
Diffstat (limited to 'skills/ngit')
| -rw-r--r-- | skills/ngit/SKILL.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/skills/ngit/SKILL.md b/skills/ngit/SKILL.md index 272f9ba..7294c82 100644 --- a/skills/ngit/SKILL.md +++ b/skills/ngit/SKILL.md | |||
| @@ -84,7 +84,7 @@ Push options `title=` and `description=` are required. Use `\n\n` for paragraph | |||
| 84 | ### Advanced: ngit send | 84 | ### Advanced: ngit send |
| 85 | 85 | ||
| 86 | ```bash | 86 | ```bash |
| 87 | ngit send HEAD~2 --title "My Feature" --description "Details" | 87 | ngit send HEAD~2 --subject "My Feature" --description "Details" |
| 88 | ngit send --defaults # non-interactive | 88 | ngit send --defaults # non-interactive |
| 89 | ngit send HEAD~2 --in-reply-to <PR-event-id> # update existing PR | 89 | ngit send HEAD~2 --in-reply-to <PR-event-id> # update existing PR |
| 90 | ``` | 90 | ``` |
| @@ -130,8 +130,8 @@ ngit pr set-subject <ID|nevent> --subject "New title" | |||
| 130 | ## Issues | 130 | ## Issues |
| 131 | 131 | ||
| 132 | ```bash | 132 | ```bash |
| 133 | ngit issue create --title "Bug title" --body "Details as markdown" --label bug | 133 | ngit issue create --subject "Bug title" --body "Details as markdown" --label bug |
| 134 | ngit issue create --title "Feature" --body "..." --label enhancement --label help-wanted | 134 | ngit issue create --subject "Feature" --body "..." --label enhancement --label help-wanted |
| 135 | ngit issue list --json | 135 | ngit issue list --json |
| 136 | ngit issue list --json --status closed | 136 | ngit issue list --json --status closed |
| 137 | ngit issue list --json --label bug | 137 | ngit issue list --json --label bug |