I runned a code formatter in our code base. Years later I was still 'blamed' for many things in our code as few files were untouched.
Git-blame-someone-else
11–20 of 100 posts
Re: Git-blame-someone-else
#12I runned a code formatter in our code base. Years later I was still 'blamed' for many things in our code as few files were untouched.
Re: Git-blame-someone-else
#13Re: Git-blame-someone-else
#14Re: Git-blame-someone-else
#15git commit --amend --author=[...]
Re: Git-blame-someone-else
#16I runned a code formatter in our code base. Years later I was still 'blamed' for many things in our code as few files were untouched.
https://git-scm.com/docs/git-blame#Documentation/git-blame.t...
Re: Git-blame-someone-else
#17I runned a code formatter in our code base. Years later I was still 'blamed' for many things in our code as few files were untouched.
Re: Git-blame-someone-else
#18Re: Git-blame-someone-else
#19I runned a code formatter in our code base. Years later I was still 'blamed' for many things in our code as few files were untouched.
It's usually called "blame previous revision".
Re: Git-blame-someone-else
#20Stop using git blame to look up who authored code, it's not a useful tool. Use git log -S to search for changes to that line (then repeat with the previous version of that line, until you find the original author), and/or git log -L to track changes to a code block. Don't waste your time with git blame.