Hi
I use SourceTree to merge between branches. In master branch, FILE-A is changed, and in develop branch, FILE-A is removed. When I merge develop onto master. It will mark this file as conflict.
The question is
1. How to know this file is deleted in branch merged from or deleted in branch merged to? The only way is type "git status" in terminal, it will show "deleted by them" or "deleted by us". I don't know how to get this information from GUI.
2. When I select "Resolve Using Theirs", the file will remain unchanged, not be deleted as I expected. The only way is remove the file by selecting "Remove". It is difficult when there is many conflicts. Now, I must select each file to see if this file is deleted, and do "Add" or "Remove" for each of those files. Then I can resolve remain conflicts with "Resolve Using Theirs" or "Resolve Using Mine". Is there a express way to do this?
Thanks!