A few magit tricks for myself.
magit-log-buffer-file shows the git log for the file you're currently editing.
But the real power comes when you select a region first: it will filter the log to show
only commits that modified those specific lines.
This is incredibly useful for understanding the history of a particular function or block of code without wading through unrelated changes to the rest of the file.
git log -L under the hood