I know if you modify the same lines in a file and you try to merge the branches, you'd get a merge conflict, since it wouldn't know which version to keep.
So, does this mean if you modify different lines in a file, git would be able to merge them? Does this only apply to addition of new lines or deletions too? What if in one branch, the file is unmodified/untouched and in another, someone deletes a few lines in that file. If we merge the branches, does git keep the deletion?
Thanks!