mirror of
https://gitlab.gnome.org/GNOME/gitg
synced 2024-11-04 23:34:39 +00:00
Include conflict status
This commit is contained in:
parent
d048a23901
commit
ddda7f14c4
1 changed files with 5 additions and 1 deletions
|
@ -46,11 +46,15 @@ public class StageStatusFile : Object, StageStatusItem
|
|||
private static Ggit.StatusFlags s_work_flags =
|
||||
Ggit.StatusFlags.WORKING_TREE_MODIFIED
|
||||
| Ggit.StatusFlags.WORKING_TREE_DELETED
|
||||
| Ggit.StatusFlags.WORKING_TREE_TYPECHANGE;
|
||||
| Ggit.StatusFlags.WORKING_TREE_TYPECHANGE
|
||||
| Ggit.StatusFlags.CONFLICTED;
|
||||
|
||||
private static Ggit.StatusFlags s_untracked_flags =
|
||||
Ggit.StatusFlags.WORKING_TREE_NEW;
|
||||
|
||||
private static Ggit.StatusFlags s_ignored_flags =
|
||||
Ggit.StatusFlags.IGNORED;
|
||||
|
||||
public StageStatusFile(string path, Ggit.StatusFlags flags)
|
||||
{
|
||||
d_path = path;
|
||||
|
|
Loading…
Reference in a new issue