if a line is modified back and forth between 2 versions several times,
git blame seems to show only the latest commits on that line.
would it be possible to let it show all commits on that line?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
git blamecan’t do that itself (but see below for a workaround).But
git guihas a blame mode that allows you to drill down into commits.Invoke it with
git gui blame <filename>once installed.