Commandscc project
cc project create
Create a project. You rarely need this directly — cc switch <name>
creates a project on the fly if it doesn't exist.
Usage
cc project create [name] [flags]Arguments
| Argument | Description |
|---|---|
name | Project name. Omit to be prompted for one. |
Flags
| Flag | Description |
|---|---|
--virtual | Create a virtual project (no local path, time tracking only) |
-w, --workspace | Create the project in a workspace |
-y, --yes | Skip confirmation prompt |
When you create a project inside an R&D workspace (-w, or auto-detected from the
current directory), cc discovers the ticket's forward-port chain and sets up the
matching environments. Otherwise it creates a single environment.
Examples
cc project create acme # create project 'acme'
cc project create acme -w rnd # create 'acme' in the 'rnd' workspace
cc project create billing --virtual # time-tracking-only project, no code pathRelated
cc project list— list projectscc project delete— delete a projectcc project env— add environments to a projectcc switch— switch to (and auto-create) a project- Command Reference