I have a basic doubt on GIT concepts.
- I have a branch
masterand another branch calledfeature. - I am working on
featurebranch. I deleted 10 existing files which originally was added by some other author and committed the changes tofeaturebranch. - I added back 4 of the deleted files and committed these changes as well to my
featurebranch. - I create a pull request for
featurebranch tomaster. In the diff in pull request withmaster, as expected I see 6 files deleted.
My question is, now if the pull request is merged to master, would GIT show history of 4 files which has been re-added as added by me or the original author?