mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-12 00:26:24 -04:00
acknowledge 'DU' statuses as being merge conflicts
This commit is contained in:
parent
e0bdfad63a
commit
7a2176f479
|
|
@ -156,7 +156,7 @@ func (c *GitCommand) GetStatusFiles() []*File {
|
|||
HasUnstagedChanges: unstagedChange != " ",
|
||||
Tracked: !untracked,
|
||||
Deleted: unstagedChange == "D" || stagedChange == "D",
|
||||
HasMergeConflicts: change == "UU" || change == "AA",
|
||||
HasMergeConflicts: change == "UU" || change == "AA" || change == "DU",
|
||||
Type: c.OSCommand.FileType(filename),
|
||||
}
|
||||
files = append(files, file)
|
||||
|
|
|
|||
Loading…
Reference in a new issue