We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b19499a commit 160620cCopy full SHA for 160620c
renku/infrastructure/repository.py
@@ -1283,10 +1283,13 @@ class DiffChangeType(Enum):
1283
"""Type of change in a ``Diff``."""
1284
1285
ADDED = "A"
1286
+ COPIED = "C"
1287
DELETED = "D"
- RENAMED = "R"
1288
MODIFIED = "M"
1289
+ RENAMED = "R"
1290
TYPE_CHANGED = "T"
1291
+ UNMERGED = "U"
1292
+ UNKNOWN = "X"
1293
1294
1295
class Diff(NamedTuple):
0 commit comments