mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-20 19:55:00 +00:00
28 lines
No EOL
652 B
C#
28 lines
No EOL
652 B
C#
using System.Text;
|
|
|
|
namespace SourceGit.Commands
|
|
{
|
|
public class QueryFileContent : Command
|
|
{
|
|
public QueryFileContent(string repo, string revision, string file)
|
|
{
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
Args = $"show {revision}:\"{file}\"";
|
|
}
|
|
|
|
public string Result()
|
|
{
|
|
Exec();
|
|
return _builder.ToString();
|
|
}
|
|
|
|
protected override void OnReadline(string line)
|
|
{
|
|
_builder.Append(line);
|
|
_builder.Append('\n');
|
|
}
|
|
|
|
private readonly StringBuilder _builder = new StringBuilder();
|
|
}
|
|
} |