nerdexam
Databricks

DATABRICKS-CERTIFIED-DATA-ENGINEER-ASSOCIATE · Question #19

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…

The correct answer is C. Pull. To synchronize a Databricks Repo with changes from a central Git repository, the data engineer needs to perform a git pull operation.

Submitted by parkjh· Apr 18, 2026Deployment and Operations

Question

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?

Options

  • AMerge
  • BPush
  • CPull
  • DCommit
  • EClone

How the community answered

(44 responses)
  • B
    7% (3)
  • C
    89% (39)
  • D
    2% (1)
  • E
    2% (1)

Why each option

To synchronize a Databricks Repo with changes from a central Git repository, the data engineer needs to perform a `git pull` operation.

AMerge

`Merge` combines branches locally, but `pull` is the specific operation to fetch and integrate changes from a remote repository.

BPush

`Push` sends local changes to the remote repository, which is the opposite of pulling changes from the remote.

CPullCorrect

The `git pull` command fetches changes from the remote Git repository and automatically merges them into the current local branch, effectively syncing the Databricks Repo with the latest updates from the central repository.

DCommit

`Commit` saves changes to the local repository's history, but it does not interact with the remote repository to get external changes.

EClone

`Clone` creates an initial copy of a remote repository on a local machine; it is not used to update an already existing repository.

Concept tested: Databricks Repos Git operations

Source: https://docs.databricks.com/en/repos/index.html#common-git-operations

Topics

#Git Operations#Databricks Repos#Version Control#Remote Synchronization

Community Discussion

No community discussion yet for this question.

Full DATABRICKS-CERTIFIED-DATA-ENGINEER-ASSOCIATE Practice