DevZero Logo
DevZero

Cloning Source Code

Cloning source code in DevZero.

The repos block of our recipe specification is used to clone code. This will use the permissions of the GitHub application you have connected with DevZero.

To clone one or multiple repos:

version: "3"
build:
  steps:
    - type: apt-get
      packages: ["git"]
    - type: git-clone
      url: https://github.com/my-org/my-repo
    - type: git-clone
      url: https://github.com/vercel/next.js

Code block in a recipe

On this page