Developer
Documentation
Resources
Get Support
Sign in
Developer
Get Support
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Developer
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
admin auth
admin user
jira auth
jira board
jira dashboard
jira field
jira filter
jira project
jira sprint
jira workitem
rovodev auth
Last updated Oct 3, 2024

acli jira project create

Create a Jira project – a collection of work items.

Synopsis

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
2
acli jira project create [flags]

Examples

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"

Options

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

SEE ALSO

Rate this page: