-
Use git annotate (or blame)
-
Scroll to the specific line
-
Use
git show
with the commit hash
$ git annotate cms/models.py
...
...
b5556e81 (Bob Belderbos 2022-05-11 21:47:28 +0200 53) business = models.BooleanField(default=False)
...
...
$ git show b5556e81
commit b5556e81c10628468c5e0fc0239519f13424d524
...
add business flag
#git