Actually I'm trying to get reports on merge conflicts. I have used 'git blame' to see which line has been changed, but I could not find the name of the branch and the repository.
Is there a way to find the name of the repository name, the name of the branch and the name of the author, 'Git blame' with a file or committed id 'so that whenever there is a conflict of merger, then I will send an email to those writers I can send that file / line touched to solve it.
You should only give the modification and author, but:
- As mentioned in "", you can not easily deprive the branch. is a beginner, even if
git branch - -
- I doubt you get that repository (As long as searching hard in the
git log
results, which is trying to find parents arising out ofref / remotes
namespace) . - I doubt you get that repository (As long as searching hard in the
Now if you have a proper .mailmap
on top, you will also have the right email addresses.
In simple terms, the email address used in the comma to map each real-time name of an author into a file, a white spot and a name (
& For example:
proper name
and & gt;
& lt; commit@email.xx>
Comments
Post a Comment