Skip to content

nrepo tag

Terminal window
nrepo tag <id> <tags...>
nrepo tag add <tag> --ids <ids>
nrepo tag remove <tag> --ids <ids>

nrepo tag manages tags on your ideas. It has three forms:

  • Set tags — Add one or more tags to a single idea (merged with existing tags).
  • Add tag — Add a tag to one or more ideas without removing existing tags.
  • Remove tag — Remove a tag from one or more ideas.
FlagTypeDefaultDescription
--ids <ids>string(none)Comma-separated list of idea IDs. Required for add and remove subcommands.
--jsonbooleanfalseOutput as JSON.
--humanbooleantrueOutput as human-readable text (default).

Add tags to idea 42 with ui and frontend:

Terminal window
nrepo tag 42 ui frontend
Terminal window
nrepo tag add priority-high --ids 1,2,3
Terminal window
nrepo tag remove deprecated --ids 4,5

The set form prints the updated idea with its new tags. The add and remove forms print a summary of how many ideas were updated.

Added tag "priority-high" to 3 ideas