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" # 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 -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 -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 -u, --url string URL of the project
Rate this page: