Databricks Certified Data Engineer Associate — Question 27
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 of the following Git operations does the data engineer need to run to accomplish this task?
Answer options
- A. Merge
- B. Push
- C. Pull
- D. Commit
- E. Clone
Correct answer: C
Explanation
The data engineer needs to run the 'Pull' operation to fetch and integrate the changes from the central Git repository into their local Databricks Repo. The 'Merge' operation is used to combine branches, 'Push' uploads local changes to the remote repository, 'Commit' saves changes to the local repository, and 'Clone' creates a copy of a repository, which is not needed in this scenario.