Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions GVFS/GVFS.FunctionalTests/Tools/ControlGitRepo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ public void Initialize()
GitProcess.Invoke(this.RootPath, "branch --set-upstream " + this.Commitish + " origin/" + this.Commitish);
GitProcess.Invoke(this.RootPath, "checkout " + this.Commitish);
GitProcess.Invoke(this.RootPath, "branch --unset-upstream");

// Enable the ORT merge strategy
GitProcess.Invoke(this.RootPath, "config pull.twohead ort");
}

public void Fetch(string commitish)
Expand Down
2 changes: 1 addition & 1 deletion Version.props
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
including taking version numbers 2.X.Y from upstream and updating .W if we have any
hotfixes to microsoft/git.
-->
<GitPackageVersion>2.20210701.3</GitPackageVersion>
<GitPackageVersion>2.20210817.4</GitPackageVersion>
<MinimumGitVersion>v2.31.0.vfs.0.1</MinimumGitVersion>
</PropertyGroup>

Expand Down