<@ULVA73B9P> can you give me an example on how to ...
# marvin-in-the-wild
s
@Marvin can you give me an example on how to specify the repository for
prefect.deployments.steps.git_clone
from GitLab?
m
Here's an example of how to specify a GitLab repository in the
prefect.deployments.steps.git_clone
step for your deployment:
Copy code
yaml
pull:
- prefect.deployments.steps.git_clone:
    repository: <https://gitlab.com/your-org/your-repo.git>
    credentials: "{{ prefect.blocks.gitlab-credentials.my-credentials }}"
In this example: -
repository
specifies the URL of your GitLab repository. -
credentials
refers to a
GitLabCredentials
block (defined in the Prefect UI or API), which provides the necessary authentication for cloning the repository. For more details, you can refer to the Prefect Deployment Guide or the Specific GitLab Integration Documentation.