2024-03-17 18:37:06 -07:00
|
|
|
|
namespace SourceGit.Commands
|
|
|
|
|
{
|
|
|
|
|
public class QueryRepositoryRootPath : Command
|
|
|
|
|
{
|
|
|
|
|
public QueryRepositoryRootPath(string path)
|
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
|
WorkingDirectory = path;
|
|
|
|
|
Args = "rev-parse --show-toplevel";
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-03-31 01:54:29 -07:00
|
|
|
|
}
|