mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 12:45:00 +00:00
optimize<WorkingCopy>: do NOT show unmerged changes in staged
This commit is contained in:
parent
08f279a521
commit
6613566afb
3 changed files with 5 additions and 9 deletions
|
@ -33,13 +33,6 @@ namespace SourceGit.Models {
|
|||
public string Path { get; set; } = "";
|
||||
public string OriginalPath { get; set; } = "";
|
||||
|
||||
public bool IsAddedToIndex {
|
||||
get {
|
||||
if (Index == Status.None || Index == Status.Untracked) return false;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
public bool IsConflit {
|
||||
get {
|
||||
if (Index == Status.Unmerged || WorkTree == Status.Unmerged) return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue