vercel link
Learn how to link a local directory to a Vercel Project using the vercel link CLI command.The vercel link
command links your local directory to a Vercel Project.
vercel link
vercel link [path-to-directory]
These are options that only apply to the vercel link
command.
The --repo
option can be used to link all projects in your repository to their respective Vercel projects in one command. This command requires that your Vercel projects are using the Git integration.
vercel link --repo
The --yes
option can be used to skip questions you are asked when setting up a new Vercel Project.
The questions will be answered with the default scope and current directory for the Vercel Project name and location.
vercel link --yes
The --project
option can be used to specify a project name. In non-interactive usage, --project
allows you to set a project name that does not match the name of the current working directory.
vercel link --yes --project foo
The following global options can be passed when using the vercel link
command:
For more information on global options and their usage, refer to the options section.
Was this helpful?