mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2025-01-05 22:57:20 -08:00
11 lines
256 B
C#
11 lines
256 B
C#
namespace SourceGit.Commands
|
|
{
|
|
public class QueryRepositoryRootPath : Command
|
|
{
|
|
public QueryRepositoryRootPath(string path)
|
|
{
|
|
WorkingDirectory = path;
|
|
Args = "rev-parse --show-toplevel";
|
|
}
|
|
}
|
|
}
|