namespace SourceGit.Commands { public class QueryRepositoryRootPath : Command { public QueryRepositoryRootPath(string path) { WorkingDirectory = path; Args = "rev-parse --show-toplevel"; } } }