Tagging an issue is easy, let's add the `bug` and `good-first-issue` tags to some issue: ``` $ rad tag 2e8c1bf3fe0532a314778357c886608a966a34bd bug good-first-issue ``` We can now show the issue to check whether those tags were added: ``` $ rad issue show 2e8c1bf3fe0532a314778357c886608a966a34bd ╭─────────────────────────────────────────────────────────╮ │ Title flux capacitor underpowered │ │ Tags bug, good-first-issue │ │ Status open │ │ │ │ Flux capacitor power requirements exceed current supply │ ╰─────────────────────────────────────────────────────────╯ ``` Untagging an issue is very similar: ``` $ rad untag 2e8c1bf3fe0532a314778357c886608a966a34bd good-first-issue ``` Notice that the `good-first-issue` tag has disappeared: ``` $ rad issue show 2e8c1bf3fe0532a314778357c886608a966a34bd ╭─────────────────────────────────────────────────────────╮ │ Title flux capacitor underpowered │ │ Tags bug │ │ Status open │ │ │ │ Flux capacitor power requirements exceed current supply │ ╰─────────────────────────────────────────────────────────╯ ```