conflicts
List all files that currently have merge conflicts. This is helpful during merge or rebase operations to quickly see which files need conflict resolution, without having to parse through the full output of git status.
Usage:
git conflicts
CLI Command
git config --global alias.conflicts "!git ls-files --unmerged | cut -f2 | sort -u"
.gitconfig Snippet
[alias]
conflicts = !git ls-files --unmerged | cut -f2 | sort -u