mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-02-09 13:47:11 +02: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…
x
Reference in New Issue
Block a user