Quick Start
First-Time Setup
Section titled “First-Time Setup”Configure your Redmine server connection:
redmine initCommon Tasks
Section titled “Common Tasks”Working with Issues
Section titled “Working with Issues”# List open issues for a projectredmine issues list --project myproject
# View a specific issueredmine issues get 123
# Create a new issueredmine issues create --project myproject --subject "Fix login bug" --tracker Bug
# Update an issueredmine issues update 123 --status "In Progress" --assignee me
# Close an issue with a commentredmine issues close 123 --notes "Fixed in commit abc123"
# Browse issues interactivelyredmine issues browse --project myprojectLogging Time
Section titled “Logging Time”# Log time interactivelyredmine time log
# Log time with flagsredmine time log --issue 123 --hours 2.5 --activity Development --comment "Code review"
# View your time entries for todayredmine time list --user me --from todaySearching
Section titled “Searching”# Search across all resourcesredmine search "login bug"
# Search only issuesredmine search issues "login bug" --project myproject
# Search open issues onlyredmine search "login bug" --open-issuesName Resolution
Section titled “Name Resolution”You don’t need to memorize numeric IDs. The CLI resolves names automatically:
# Use names instead of IDsredmine issues create --project myproject --tracker Bug --priority High --assignee "John Smith"
# Use "me" for the current userredmine issues list --assignee meOutput Formats
Section titled “Output Formats”# Default table outputredmine issues list
# JSON for scriptingredmine issues list -o json
# CSV for spreadsheetsredmine issues list -o csv
# Wide table with extra columnsredmine issues list -o wide