Blame for context


Today I learned that git blame becomes much more useful when you include the commit context.

  • git blame -w <file> ignores whitespace-only changes.
  • git show <sha> helps you understand the “why” behind a line.

Related notes