|
|
|
|
|
by arximboldi
2169 days ago
|
|
Yes! Do you know the tool "git blame"? (You can also use it with "git gui blame", from Github, or from many text editors). It tells you which commit last changed each line of code. Then you can click and see the surrounding history and context. If the git history is "well written" this is an invaluable tool for understanding the code and how it came to be the way it is! Super useful when working on large code-bases where lots of different people collaborate. |
|
I guess there is some value in being able to have a quick description of the commits shown when looking at the blame output though.