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
// To avoid deadlocks, always read the output stream first and then wait
221
+
// TODO: don't read in all the data at once; stream it
222
+
stringdata=git.StandardOutput.ReadToEnd();
220
223
git.WaitForExit();
221
224
222
225
switch(git.ExitCode)
@@ -229,9 +232,6 @@ public IEnumerable<string> GetRegex(string nameRegex, string valueRegex)
229
232
$"Failed to get Git configuration multi-valued entry '{nameRegex}' with value regex '{valueRegex}'. Exit code '{git.ExitCode}' (level={_filterLevel})");
230
233
}
231
234
232
-
// TODO: don't read in all the data at once; stream it
0 commit comments