As branch manager, when merging branches, often there are merge conflicts. Is there any way of getting the names of the developers involved in the conflicts as they are not necessarily me?
Asked
Active
Viewed 52 times
1
-
You are looking for [git blame](https://stackoverflow.com/questions/31203001/what-does-git-blame-do). – Daemon Painter Apr 28 '20 at 14:21
1 Answers
3
Yes, there is. The tool you are looking for is git blame:
Annotates each line in the given file with information from the revision which last modified the line. Optionally, start annotating from the given revision.
This should solve your issue.

Daemon Painter
- 3,208
- 3
- 29
- 44
-
And the funny thing is I knew about this command already lol. Works great for merge conflicts also. – ericcurtin Apr 28 '20 at 15:56
-
@ericcurtin, if this answers your question, please would you be so kind to [accept](https://stackoverflow.com/help/someone-answers) it? I'm available for further details, if needed. – Daemon Painter Apr 28 '20 at 22:49