src\Util\GitCommand.cs (9)
18CommandResult result = Create("status", "--porcelain")
29Create("commit", allFlag, "-m", message, "--author", $"{authorName} <{authorEmail}>")
51Create(args)
73Create("-C", path, "checkout", hash)
83Create("-C", path, "fetch", repository, refspec)
90Create("-C", path, "fetch", "--all")
97CommandResult result = Create("-C", path, "ls-remote", "--heads", repository, @ref)
106CommandResult result = Create(new[] { "-C", path, "rev-parse" }.Concat(args).ToArray())
115CommandResult result = Create("submodule", "status", "--cached", submodulePath)