
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
Which of the following Git operations must be performed outside of Databricks Repos?
A
Commit
B
Pull
C
Push
D
Clone
E
Merge
Explanation:
In Databricks Repos, you can perform most Git operations directly within the platform, including:
However, the Clone operation must be performed outside of Databricks Repos because:
Initial Setup: To create a Databricks Repo, you need to first clone a Git repository from an external Git provider (GitHub, GitLab, Bitbucket, etc.) using external Git tools or the Databricks CLI.
Repo Creation Process: When creating a new Repo in Databricks, you specify the Git URL, but the actual cloning happens during the repo creation process, not as a separate Git operation within the Repo interface.
Workflow: The typical workflow is:
This is because Databricks Repos is designed to work with existing Git repositories that have already been cloned, rather than providing a full Git client for initial repository cloning operations.