mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00

* refactor: Update submodules individually to avoid failures (#925) - Remove `--recurse-submodules` flag from the clone command to simplify the cloning process. - Refactor submodule update logic to handle updating all submodules in a loop and improve progress description handling. * fix: Parse submodule list even if submodule status fails (#935)
33 lines
869 B
C#
33 lines
869 B
C#
using System;
|
|
|
|
namespace SourceGit.Commands
|
|
{
|
|
public class Clone : Command
|
|
{
|
|
private readonly Action<string> _notifyProgress;
|
|
|
|
public Clone(string ctx, string path, string url, string localName, string sshKey, string extraArgs, Action<string> ouputHandler)
|
|
{
|
|
Context = ctx;
|
|
WorkingDirectory = path;
|
|
TraitErrorAsOutput = true;
|
|
SSHKey = sshKey;
|
|
Args = "clone --progress --verbose ";
|
|
|
|
if (!string.IsNullOrEmpty(extraArgs))
|
|
Args += $"{extraArgs} ";
|
|
|
|
Args += $"{url} ";
|
|
|
|
if (!string.IsNullOrEmpty(localName))
|
|
Args += localName;
|
|
|
|
_notifyProgress = ouputHandler;
|
|
}
|
|
|
|
protected override void OnReadline(string line)
|
|
{
|
|
_notifyProgress?.Invoke(line);
|
|
}
|
|
}
|
|
}
|