ux: show conflict sources when it comes from a stash or patch (#1067)

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2025-03-10 10:22:49 +08:00
parent bfc3f37e47
commit 855466686d
No known key found for this signature in database
2 changed files with 12 additions and 0 deletions

View file

@ -49,6 +49,11 @@
Theirs = merge.Source;
Mine = repo.CurrentBranch;
}
else
{
Theirs = "Stash or Patch";
Mine = repo.CurrentBranch;
}
}
public void UseTheirs()