
Ultimate access to all questions.
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.