Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Config: commitGraph.generationVersion=1 #1726

Merged
merged 2 commits into from
Mar 24, 2021
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
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.20210114.2</GitPackageVersion>
<GitPackageVersion>2.20210322.1</GitPackageVersion>
</PropertyGroup>

<PropertyGroup Label="DefaultSettings">
Expand Down
3 changes: 3 additions & 0 deletions GVFS/GVFS/CommandLine/GVFSVerb.cs
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,9 @@ public static bool TrySetRequiredGitConfigSettings(Enlistment enlistment)
// global config of "status.submoduleSummary=true" from causing
// extreme slowness in "git status"
{ "status.submoduleSummary", "false" },

// Generation number v2 isn't ready for full use. Wait for v3.
{ "commitGraph.generationVersion", "1" },
};

if (!TrySetConfig(enlistment, requiredSettings, isRequired: true))
Expand Down