Answers
Here are the answers to the questions given above:
- Combine time-limiting options with the
--
remotes
option: git log --
since=yesterday --remotes
.- Use the
git blame
command or an interactive GUI to do this, such asgit gui blame
(or an integration with your editor or integrated development environment (IDE); you can also search through the history of the relevant fragment of a file withgit
log -L
. - Use
git bisect
to find the commit that introduced the bug, perhaps even by automating the search withgit
bisect run
. - Add the correct name and email to the
.
mailmap
file.