Skip to content

Commit

Permalink
Update Git to [PR BUILD] vfs-2.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
derrickstolee committed Dec 11, 2018
1 parent 2fc0a49 commit 9cc6534
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GVFS/GVFS.Build/GVFS.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup Label="Parameters">
<GVFSVersion>0.2.173.2</GVFSVersion>
<GitPackageVersion>2.20181129.1</GitPackageVersion>
<GitPackageVersion>2.20181210.10-pr</GitPackageVersion>
</PropertyGroup>

<PropertyGroup Label="DefaultSettings">
Expand Down
3 changes: 3 additions & 0 deletions GVFS/GVFS.FunctionalTests/Tools/ControlGitRepo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,15 @@ public void Initialize()
{
Directory.CreateDirectory(this.RootPath);
GitProcess.Invoke(this.RootPath, "init");
GitProcess.Invoke(this.RootPath, "config checkout.optimizenewbranch false");
GitProcess.Invoke(this.RootPath, "config core.autocrlf false");
GitProcess.Invoke(this.RootPath, "config index.threads true");
GitProcess.Invoke(this.RootPath, "config merge.stat false");
GitProcess.Invoke(this.RootPath, "config merge.renames false");
GitProcess.Invoke(this.RootPath, "config advice.statusUoption false");
GitProcess.Invoke(this.RootPath, "config core.abbrev 40");
GitProcess.Invoke(this.RootPath, "config status.aheadbehind false");
// GitProcess.Invoke(this.RootPath, "config reset.quiet true");
GitProcess.Invoke(this.RootPath, "config user.name \"Functional Test User\"");
GitProcess.Invoke(this.RootPath, "config user.email \"functional@test.com\"");
GitProcess.Invoke(this.RootPath, "remote add origin " + CachePath);
Expand Down
2 changes: 1 addition & 1 deletion GVFS/GVFS/CommandLine/GVFSVerb.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public static bool TrySetRequiredGitConfigSettings(Enlistment enlistment)
{ "merge.renames", "false" },
{ "pack.useBitmaps", "false" },
{ "receive.autogc", "false" },
{ "reset.quiet", "true" },
// { "reset.quiet", "true" }, // Testing removal for 2.20
{ "status.deserializePath", gitStatusCachePath },
};

Expand Down

0 comments on commit 9cc6534

Please sign in to comment.