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`