From 50d402303d98e50443a33aadb7997561e7074d2f Mon Sep 17 00:00:00 2001 From: Torfab Date: Wed, 12 Oct 2022 13:09:41 +0200 Subject: [PATCH] dolt-fetch: add page (#8823) --- pages/common/dolt-fetch.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/dolt-fetch.md diff --git a/pages/common/dolt-fetch.md b/pages/common/dolt-fetch.md new file mode 100644 index 0000000000..120f37c6cd --- /dev/null +++ b/pages/common/dolt-fetch.md @@ -0,0 +1,16 @@ +# dolt fetch + +> Download objects and refs from another repository. +> More information: . + +- 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`