mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
|
|
namespace SourceGit.Commands
|
|
{
|
|
public static class QueryFileContent
|
|
{
|
|
public static Stream Run(string repo, string revision, string file)
|
|
{
|
|
var starter = new ProcessStartInfo();
|
|
starter.WorkingDirectory = repo;
|
|
starter.FileName = Native.OS.GitExecutable;
|
|
starter.Arguments = $"show {revision}:\"{file}\"";
|
|
starter.UseShellExecute = false;
|
|
starter.CreateNoWindow = true;
|
|
starter.WindowStyle = ProcessWindowStyle.Hidden;
|
|
starter.RedirectStandardOutput = true;
|
|
|
|
var stream = new MemoryStream();
|
|
try
|
|
{
|
|
var proc = new Process() { StartInfo = starter };
|
|
proc.Start();
|
|
proc.StandardOutput.BaseStream.CopyTo(stream);
|
|
proc.WaitForExit();
|
|
proc.Close();
|
|
|
|
stream.Position = 0;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
App.RaiseException(repo, $"Failed to query file content: {e}");
|
|
}
|
|
|
|
return stream;
|
|
}
|
|
}
|
|
}
|