Exam Certified Data Engineer Associate All QuestionsBrowse all questions from this 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?

    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
benni_aleOption: C

C is correct

kishanuOption: C

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

OfficeSaracusOption: C

C is correct

god_fatherOption: C

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