Answers for "git unmerged paths both modified"

3

git find unmerged files

git status
Posted by: Guest on July-17-2020
0

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
Posted by: Guest on November-04-2020

Code answers related to "git unmerged paths both modified"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language