Skip to content

Commit

Permalink
Docs: update fetch step about multiple remotes:
Browse files Browse the repository at this point in the history
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
  • Loading branch information
derrickstolee committed Mar 17, 2020
1 parent e1b2a97 commit d09d345
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions Scalar/CommandLine/CloneVerb.cs
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,7 @@ private Result TryCreateEnlistment(
{
enlistment = new ScalarEnlistment(
normalizedEnlistementRootPath,
Path.Combine(normalizedEnlistementRootPath, ScalarConstants.WorkingDirectoryRootName),
this.RepositoryURL,
gitBinPath,
authentication: null);
Expand Down
5 changes: 3 additions & 2 deletions docs/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ tasks are:
commits. After writing a new file, verify the file was computed successfully.
This drastically improves the performance of commands like `git log --graph`.

* `fetch`: Fetch the latest data from the remote server. If using the GVFS
* `fetch`: Fetch the latest data from the remote servers. If using the GVFS
protocol, download the latest set of commit and tree packs from
the cache server or the origin remote. This will not update your local
the cache server or the origin remote. Otherwise, this step will fetch
the latest objects from each remote. This will not update your local
refs, so your `git fetch` commands will report all ref updates. Those
`git fetch` commands will be much faster as they will require much less
data transfer.
Expand Down

0 comments on commit d09d345

Please sign in to comment.