Answers for "reset repo with conflicts"

1

git CONFLICT (modify/delete)

If you want to keep the file

$ git checkout <filename>
$ git add <filename>
$ git commit

If you want to discard the file

$ git rm <filename>
$ git commit
Posted by: Guest on April-14-2021

Code answers related to "reset repo with conflicts"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language