mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
26 lines
634 B
C#
26 lines
634 B
C#
using System;
|
|
|
|
namespace SourceGit.Commands
|
|
{
|
|
public class CountLocalChangesWithoutUntracked : Command
|
|
{
|
|
public CountLocalChangesWithoutUntracked(string repo)
|
|
{
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
Args = "status -uno --ignore-submodules=dirty --porcelain";
|
|
}
|
|
|
|
public int Result()
|
|
{
|
|
var rs = ReadToEnd();
|
|
if (rs.IsSuccess)
|
|
{
|
|
var lines = rs.StdOut.Split('\n', StringSplitOptions.RemoveEmptyEntries);
|
|
return lines.Length;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
}
|