Databricks Certified Data Engineer Associate — Question 57

A data engineer is running code in a Databricks Repo that is cloned from a central Git repository. A colleague of the data engineer informs them that changes have been made and synced to the central Git repository. The data engineer now needs to sync their Databricks Repo to get the changes from the central Git repository.

Which Git operation does the data engineer need to run to accomplish this task?

Answer options

Correct answer: B

Explanation

The correct answer is B, Pull, because this command is used to fetch and integrate changes from a remote repository into the current branch. Clone would create a new copy of the repository, Merge combines changes within the same repository, and Push uploads local changes to a remote repository, which does not apply in this scenario.