1 2twg jira issues get --issue-key PROJ-123 --site myco twg jira issues search --site myco --jql "project = PROJ AND assignee = currentUser()" twg jira issues create --project-key PROJ --issue-type Bug --summary "Login fails" twg jira issues update --issue-key PROJ-123 --summary "Updated summary" twg jira issues watch --issue-key PROJ-123
1 2twg jira boards query --site myco --board-type kanban twg jira boards get --board-id 42 --site myco twg jira dashboards query --site myco twg jira filters query --site myco
1 2twg jira transitions get --issue-key PROJ-123 --site myco twg jira transitions update --issue-key PROJ-123 --transition-id 31 twg jira link create --issue-key PROJ-1 --issue-key-linked PROJ-2 --link-type blocks
1 2twg jira workitem get --workitem-id PROJ-123 --site myco twg jira workitem query --query "login" --site myco twg jira workitem comment create --workitem-id PROJ-123 --body "Comment text"
1 2# Open bugs assigned to me twg jira issues search --jql "assignee = currentUser() AND type = Bug AND statusCategory != Done" # High-priority items in a project twg jira issues search --jql "project = PROJ AND priority in (Highest, High) AND statusCategory != Done" # Updated in the last week twg jira issues search --jql "project = PROJ AND updated >= -7d"
Rate this page: