Skip to content

Commit 77bc5a4

Browse files
Merge pull request #1752: [Release] Milestone M192
This includes Git v2.33.0.vfs.0.0 Pull Requests -------------- * #1750: Update Readme.md * #1751: Update Git to v2.33.0
2 parents d6d96fd + 4a4e0aa commit 77bc5a4

3 files changed

Lines changed: 13 additions & 8 deletions

File tree

GVFS/GVFS.FunctionalTests/Tools/ControlGitRepo.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ public void Initialize()
6666
GitProcess.Invoke(this.RootPath, "branch --set-upstream " + this.Commitish + " origin/" + this.Commitish);
6767
GitProcess.Invoke(this.RootPath, "checkout " + this.Commitish);
6868
GitProcess.Invoke(this.RootPath, "branch --unset-upstream");
69+
70+
// Enable the ORT merge strategy
71+
GitProcess.Invoke(this.RootPath, "config pull.twohead ort");
6972
}
7073

7174
public void Fetch(string commitish)

Readme.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,10 @@ ensure that Git operations such as `status`, `checkout`, etc., can be as quick
1515
as possible because they will only consider the files that the user has
1616
accessed, not all files in the repository.
1717

18-
[See our documentation](docs/index.md) for instructions to get started.
19-
20-
## New name
21-
22-
This project was formerly known as GVFS (Git Virtual File System). It is undergoing a rename to VFS for Git. While the rename is in progress, the code, protocol,
23-
built executables, and releases may still refer to the old GVFS name. See https://github.com/Microsoft/VFSForGit/projects/4 for the latest status of the rename effort.
18+
Note: for new deployments, we strongly recommend you consider
19+
[Scalar](https://github.com/microsoft/scalar) instead of VFS for Git. By
20+
combining the lessons from operating VFS for Git at scale with new developments
21+
in Git, Scalar offers a clearer path forward for all large monorepos.
2422

2523
## Installing VFS for Git
2624

@@ -59,7 +57,7 @@ The installer can now be found at `C:\Repos\VFSForGit\BuildOutput\GVFS.Installer
5957

6058
## Trying out VFS for Git
6159

62-
* VFS for Git will work with any Git service that supports the
60+
* VFS for Git requires a Git service that supports the
6361
[GVFS protocol](Protocol.md). For example, you can create a repo in
6462
[Azure DevOps](https://azure.microsoft.com/services/devops/), and push
6563
some contents to it. There are two constraints:
@@ -71,6 +69,10 @@ The installer can now be found at `C:\Repos\VFSForGit\BuildOutput\GVFS.Installer
7169
* Run Git commands as you normally would
7270
* `gvfs unmount` when done
7371

72+
## Note on naming
73+
74+
This project was formerly known as GVFS (Git Virtual File System). You may occasionally
75+
see collateral, including code and protocol names, which refer to the previous name.
7476

7577
# Licenses
7678

Version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
including taking version numbers 2.X.Y from upstream and updating .W if we have any
1919
hotfixes to microsoft/git.
2020
-->
21-
<GitPackageVersion>2.20210701.3</GitPackageVersion>
21+
<GitPackageVersion>2.20210817.4</GitPackageVersion>
2222
<MinimumGitVersion>v2.31.0.vfs.0.1</MinimumGitVersion>
2323
</PropertyGroup>
2424

0 commit comments

Comments
 (0)