File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -389,7 +389,8 @@ public async void UseTheirs(List<Models.Change> changes)
389
389
continue ;
390
390
391
391
if ( change . ConflictReason == Models . ConflictReason . BothDeleted ||
392
- change . ConflictReason == Models . ConflictReason . DeletedByThem )
392
+ change . ConflictReason == Models . ConflictReason . DeletedByThem ||
393
+ change . ConflictReason == Models . ConflictReason . AddedByUs )
393
394
{
394
395
var fullpath = Path . Combine ( _repo . FullPath , change . Path ) ;
395
396
if ( File . Exists ( fullpath ) )
@@ -432,7 +433,8 @@ public async void UseMine(List<Models.Change> changes)
432
433
continue ;
433
434
434
435
if ( change . ConflictReason == Models . ConflictReason . BothDeleted ||
435
- change . ConflictReason == Models . ConflictReason . DeletedByUs )
436
+ change . ConflictReason == Models . ConflictReason . DeletedByUs ||
437
+ change . ConflictReason == Models . ConflictReason . AddedByThem )
436
438
{
437
439
var fullpath = Path . Combine ( _repo . FullPath , change . Path ) ;
438
440
if ( File . Exists ( fullpath ) )
You can’t perform that action at this time.
0 commit comments