LinuxCommandLibrary

dolt-fetch

Download objects and refs from another repository.

TLDR

Fetch the latest changes from the default remote upstream repository (origin)

$ dolt fetch
copy


Fetch latest changes from a specific remote upstream repository
$ dolt fetch [remote_name]
copy


Update branches with the current state of the remote, overwriting any conflicting history
$ dolt fetch -f
copy

Copied to clipboard