Skip to content

Issues

The issues command (alias i) manages Redmine issues end-to-end.

Terminal window
redmine issues list [flags]
FlagDescription
--projectFilter by project (name, identifier, or ID)
--trackerFilter by tracker (name or ID)
--statusFilter by status: open, closed, *, name, or ID
--assigneeFilter by assignee: me, name, or ID
--versionFilter by target version (name or ID)
--sortSort order, e.g. updated_on:desc
--includeInclude related data: attachments, relations
--attachmentsShorthand for --include attachments
--relationsShorthand for --include relations
--limitMaximum number of results (0 for all)
--offsetResult offset for pagination
-o, --outputOutput format: table, json, csv
Terminal window
redmine issues list --assignee me
Terminal window
redmine issues get <id> [flags]

Aliases: show, view.

FlagDescription
--includeInclude related data: journals, children, relations
--journalsShorthand for --include journals
--childrenShorthand for --include children
--relationsShorthand for --include relations
-o, --outputOutput format
Terminal window
redmine issues create [flags]
FlagDescription
--projectProject (name, identifier, or ID) — falls back to the default project of the active profile
--subjectIssue subject — required
--trackerTracker (name or ID)
--statusStatus (name or ID)
--priorityPriority (name or ID)
--assigneeAssignee: me, name, or ID
--descriptionIssue description
--parentParent issue ID
--categoryCategory (name or ID)
--versionTarget version (name or ID)
--estimated-hoursEstimated hours
--privateMark as private
--attachFile path to attach (repeatable)
Terminal window
redmine issues create --project myproject --subject "Add search" --tracker Feature --priority High
redmine issues create --project myproject --subject "Bug report" \
--attach /path/to/screenshot.png --attach /path/to/log.txt
Terminal window
redmine issues update <id> [flags]

Accepts the same flags as create (except --project) plus:

FlagDescription
--noteAdd a comment
--done-ratioCompletion percentage (0-100)
--attachFile path to attach (repeatable)
Terminal window
redmine issues update 123 --note "Fixed the bug" --attach /path/to/fixed_code.patch
Terminal window
redmine issues close <id> [flags]
FlagDescription
--noteAdd a closing comment
Terminal window
redmine issues reopen <id> [flags]
Terminal window
redmine issues assign <id> <user-id-or-name> [flags]

The user argument accepts a numeric ID, login, full name, or me.

Terminal window
redmine issues comment <id> --message "Your comment" [flags]
destructive
Terminal window
redmine issues delete <id> [flags]
FlagDescription
-f, --forceSkip confirmation prompt
Terminal window
redmine issues open <id>

Constructs the issue URL from your configured Redmine server and opens it in your default browser.

Terminal window
redmine issues open 123 # → https://redmine.example.com/issues/123
Terminal window
redmine issues browse [flags]

Opens an interactive terminal browser for issues. Accepts the same filter flags as list.