mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-20 19:55:00 +00:00
40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SourceGit.Commands
|
|
{
|
|
public static class Discard
|
|
{
|
|
public static void All(string repo, bool includeIgnored, Models.ICommandLog log)
|
|
{
|
|
new Restore(repo).Use(log).Exec();
|
|
new Clean(repo, includeIgnored).Use(log).Exec();
|
|
}
|
|
|
|
public static void Changes(string repo, List<Models.Change> changes, Models.ICommandLog log)
|
|
{
|
|
var needClean = new List<string>();
|
|
var needCheckout = new List<string>();
|
|
|
|
foreach (var c in changes)
|
|
{
|
|
if (c.WorkTree == Models.ChangeState.Untracked || c.WorkTree == Models.ChangeState.Added)
|
|
needClean.Add(c.Path);
|
|
else
|
|
needCheckout.Add(c.Path);
|
|
}
|
|
|
|
for (int i = 0; i < needClean.Count; i += 10)
|
|
{
|
|
var count = Math.Min(10, needClean.Count - i);
|
|
new Clean(repo, needClean.GetRange(i, count)).Use(log).Exec();
|
|
}
|
|
|
|
for (int i = 0; i < needCheckout.Count; i += 10)
|
|
{
|
|
var count = Math.Min(10, needCheckout.Count - i);
|
|
new Restore(repo, needCheckout.GetRange(i, count), "--worktree --recurse-submodules").Use(log).Exec();
|
|
}
|
|
}
|
|
}
|
|
}
|