how to solve file location conflicts in git code example
Example 1: show conflicts git
git diff --name-only --diff-filter=U
Example 2: Unmerged paths:
# if the file in the right place isn't already committed:
git add <path to desired file>
# remove the "both deleted" file from the index:
git rm --cached ../public/images/originals/dog.ai
# commit the merge:
git commit