1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-25 05:35:24 +02:00

dolt-fetch: add page (#8823)

This commit is contained in:
Torfab 2022-10-12 13:09:41 +02:00 committed by GitHub
parent e2df4d3ecb
commit 50d402303d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,16 @@
# dolt fetch
> Download objects and refs from another repository.
> More information: <https://github.com/dolthub/dolt>.
- Fetch the latest changes from the default remote upstream repository (origin):
`dolt fetch`
- Fetch latest changes from a specific remote upstream repository:
`dolt fetch {{remote_name}}`
- Update branches with the current state of the remote, overwriting any conflicting history:
`dolt fetch -f`