You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge pull request #1877 from tyrielv/async-prefetch-feedback
Minor changes to asynchronous prefetch workflow:
* Use the current executable's location instead of relying on environment to find it.
* Launch the process minimized instead of hidden.
Copy file name to clipboardExpand all lines: GVFS/GVFS/CommandLine/CloneVerb.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -254,7 +254,7 @@ public override void Execute()
254
254
arguments:"prefetch --commits")
255
255
{
256
256
UseShellExecute=true,
257
-
WindowStyle=ProcessWindowStyle.Hidden,
257
+
WindowStyle=ProcessWindowStyle.Minimized,
258
258
WorkingDirectory=enlistment.EnlistmentRoot
259
259
});
260
260
this.Output.WriteLine("\r\nPrefetch of commit graph has been started as a background process. Git operations involving history may be slower until prefetch has completed.\r\n");
0 commit comments