Certified Data Engineer Associate Exam QuestionsBrowse all questions from this exam

Certified Data Engineer Associate Exam - Question 46


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?

Show Answer
Correct Answer: C

To sync changes from a central Git repository to a local repository, the data engineer needs to perform a 'pull' operation. This operation fetches the latest changes from the central repository and merges them into the local repository, ensuring that it is up to date with the central Git repository.

Discussion

4 comments
Sign in to comment
kishanuOption: C
Oct 20, 2023

pull is required from the Databricks Repo to sync the changes b/w local and central repo.

benni_aleOption: C
Apr 29, 2024

C is correct

god_fatherOption: C
Oct 30, 2023

This is more of a Git question. From the docs: In Databricks Repos, you can use Git functionality to: Clone, push to, and pull from a remote Git repository. Create and manage branches for development work, including merging, rebasing, and resolving conflicts. Create notebooks—including IPYNB notebooks—and edit them and other files. Visually compare differences upon commit and resolve merge conflicts. Source: https://docs.databricks.com/en/repos/index.html

OfficeSaracusOption: C
Mar 12, 2024

C is correct