Create a Jira project which is a collection of work items (stories, bugs, tasks, etc).
Create a Jira project which is a collection of work items (stories, bugs, tasks, etc). You would typically use a project to represent the development work for a product, project, or service in Jira.
1 2acli jira project create [flags]
1 2# Create a project from an existing project $ acli jira project create --from-project "TEAM" --key "NEWTEAM" --name "New Project" # Provide optional fields in --from-project $ acli jira project create --from-project "TEAM" --key "NEWTEAM" --name "New Project" --description "New project description" --url "https://example.com" --lead-email "user@atlassian.com" # Generate a JSON file that could be used for project creation via --from-json flag $ acli jira project create --generate-json # Create a project from a JSON file $ acli jira project create --from-json "project.json"
1 2-d, --description string Supply a description for the project -j, --from-json string Read project details from a JSON file -f, --from-project string Create a project from an existing project. Only company managed projects can be used to clone a new project. -g, --generate-json Generates a JSON file that could be used for project creation -h, --help Show help for command -k, --key string Key of the project to be created -l, --lead-email string Lead account user email (If not provided, the lead will be same as that of parent project) -n, --name string Name of the project to be created -u, --url string URL of the project
Rate this page: