From 5921055a486f3c09b161d4f8faa7243b863d2ebd Mon Sep 17 00:00:00 2001 From: Oscar Alberto Tovar Date: Wed, 2 Jul 2025 15:24:15 -0400 Subject: [PATCH] Add header for parsing commits section --- cookbook/git.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/git.md b/cookbook/git.md index 1eee19cca68..71309d153d2 100644 --- a/cookbook/git.md +++ b/cookbook/git.md @@ -17,7 +17,7 @@ git branch --merged | lines | where ($it != "* master" and $it != "* main") | ea # => ───┴─────────────────────────────────────────── ``` -Parse formatted commit messages (more details in the parsing git log section) +### Parse formatted commit messages (more details in the parsing git log section) ```nu git log --pretty=%h»¦«%aN»¦«%s»¦«%aD | lines | split column "»¦«" sha1 committer desc merged_at | first 10