
Ultimate access to all questions.
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?
A
Merge
B
Push
C
Pull
D
Commit
Explanation:
When a data engineer needs to get changes from a central Git repository to their local repository (in this case, a Databricks Repo), they need to perform a Pull operation.
This is a fundamental Git operation for collaboration where team members need to stay synchronized with the latest code changes.