mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-06-22 02:45:00 +00:00
26 lines
633 B
C#
26 lines
633 B
C#
using System.IO;
|
|
|
|
namespace SourceGit.Commands
|
|
{
|
|
public class QueryGitCommonDir : Command
|
|
{
|
|
public QueryGitCommonDir(string workDir)
|
|
{
|
|
WorkingDirectory = workDir;
|
|
Args = "rev-parse --git-common-dir";
|
|
RaiseError = false;
|
|
}
|
|
|
|
public string Result()
|
|
{
|
|
var rs = ReadToEnd().StdOut;
|
|
if (string.IsNullOrEmpty(rs))
|
|
return null;
|
|
|
|
rs = rs.Trim();
|
|
if (Path.IsPathRooted(rs))
|
|
return rs;
|
|
return Path.GetFullPath(Path.Combine(WorkingDirectory, rs));
|
|
}
|
|
}
|
|
}
|