Git Command To List Conflicted Files

Asked By 0 points N/A Posted on -
qa-featured

I wanted to list all of my conflicted files at once in the command prompt. I attempted to do so but it doesn’t work. Can you please tell me how to do this, please? And what will be the result of the same?

SHARE
Answered By 10 points N/A #318596

Git Command To List Conflicted Files

qa-featured

It is possible to lose the conflicting files during code merging in git. It’s hard to know if the merge files are hidden files. With the following command, you can easily find the list of conflicting files.

The command is as follows:

git ls-files –u

The result you will find is as follows:

Related Questions