mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
30 lines
877 B
C#
30 lines
877 B
C#
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SourceGit.Commands
|
|
{
|
|
public class Restore : Command
|
|
{
|
|
public Restore(string repo)
|
|
{
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
Args = "restore . --source=HEAD --staged --worktree --recurse-submodules";
|
|
}
|
|
|
|
public Restore(string repo, List<string> files, string extra)
|
|
{
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
|
|
StringBuilder builder = new StringBuilder();
|
|
builder.Append("restore ");
|
|
if (!string.IsNullOrEmpty(extra))
|
|
builder.Append(extra).Append(" ");
|
|
builder.Append("--");
|
|
foreach (var f in files)
|
|
builder.Append(' ').Append('"').Append(f).Append('"');
|
|
Args = builder.ToString();
|
|
}
|
|
}
|
|
}
|