How can you tell based on git history what work is been done by me and what work is been done by some one else?
There are two people working on a project, me(Person A) and my team mate(Person B).
Person A works on 10 files and person B works on another 10 files with one file in common with person A.
- Person B makes a commit and Push
- Person A makes a commit
- Person A makes a pull
- Person A solve a conflict
- Person A commit and Push
Now a year latter, I don't remember what files person A and what files person B been working at, how can I check it based on the git history?
Clarification
The problem is that when you commit after merging a conflict, it shows you that you been working on all of the files that are part of that conflict-commits and not only yours.