I have a basic doubt on GIT concepts.
- I have a branch
master
and another branch calledfeature
. - I am working on
feature
branch. I deleted 10 existing files which originally was added by some other author and committed the changes tofeature
branch. - I added back 4 of the deleted files and committed these changes as well to my
feature
branch. - I create a pull request for
feature
branch 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?