Investigate Git history đľď¸
The code base is a crime scene and you are the detective.
Whatâs going on in that file? Why is this line of code there?
Try these examples to investigate the Eleventy config of this repo, where I have taken extra care to leave some context for the commits in the commit messagesâŚ
git blame eleventy.config.jsgit show 16cb3ac6 72ae99dc --quietgit log eleventy.config.jsgit log --oneline eleventy.config.jsgit show 16cb3ac
Git history starts to become interesting if the commits are good. What makes a âgood commitâ? I linked to this post on the frontpage but I will plug it again đ This is from the GitHub Blog and is a convincing argument for why quality commits matter: Write Better Commits, Build Better Projects
More log options to play with
git loggit log --reversegit log -3git log --onelinegit log --relative-date
The code base is a crime scene and you are the detective.
Whatâs going on in that file? Why is this line of code there?
Try these examples to investigate this repo, where I have taken extra care to leave some context for the commits in the commit messagesâŚ
git log adventures/checkout.mdgit blame eleventy.config.jsgit show 16cb3ac6 72ae99dc --quietgit log eleventy.config.jsgit log --oneline eleventy.config.jsgit show 16cb3ac
Git history starts to become interesting if the commits are good. What makes a âgood commitâ? I linked to this post on the frontpage but I will plug it again đ This is from the GitHub Blog and is a convincing argument for why quality commits matter: Write Better Commits, Build Better Projects
More log options to play with
git loggit log --reversegit log -3git log --onelinegit log --relative-date