upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/skills/ngit
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2026-03-05 13:14:34 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2026-03-05 13:14:34 +0000
commitb143abb25d6ece32412629baa3e75e94d139979f (patch)
tree4ba6a68bd811e081a529e674b93ece02c7090732 /skills/ngit
parentf3fcf863aae000964753f574b00e9fb9f5fcd452 (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.md6
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
87ngit send HEAD~2 --title "My Feature" --description "Details" 87ngit send HEAD~2 --subject "My Feature" --description "Details"
88ngit send --defaults # non-interactive 88ngit send --defaults # non-interactive
89ngit send HEAD~2 --in-reply-to <PR-event-id> # update existing PR 89ngit 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
133ngit issue create --title "Bug title" --body "Details as markdown" --label bug 133ngit issue create --subject "Bug title" --body "Details as markdown" --label bug
134ngit issue create --title "Feature" --body "..." --label enhancement --label help-wanted 134ngit issue create --subject "Feature" --body "..." --label enhancement --label help-wanted
135ngit issue list --json 135ngit issue list --json
136ngit issue list --json --status closed 136ngit issue list --json --status closed
137ngit issue list --json --label bug 137ngit issue list --json --label bug