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