skip to content
ccdocs
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

ArgumentDescription
nameProject name. Omit to be prompted for one.

Flags

FlagDescription
--virtualCreate a virtual project (no local path, time tracking only)
-w, --workspaceCreate the project in a workspace
-y, --yesSkip 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 path

On this page