From fa53e07972a47aaf69a3787698e682562479c983 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Mon, 6 May 2024 09:58:46 +0200 Subject: [PATCH] git: add git log filter for last N commits` --- docs/misc/git.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/misc/git.md b/docs/misc/git.md index d8e7ac2..a86584f 100644 --- a/docs/misc/git.md +++ b/docs/misc/git.md @@ -103,7 +103,7 @@ The applied config in each repository is the combination of all three scopes in `git log --stat --summary`: show overview of the change `git log --follow `: list version history fo file, including renames `git log --all --graph --decorate`: visualizes history as a DAG -`git log --oneline`: compact log +`git log --oneline`: compact log `git log -S`: Look for diffs that change the number of occurrences of the specified `` `git log -G`: Look for diffs whose patch text contains added/removed lines that match `` @@ -111,6 +111,7 @@ The applied config in each repository is the combination of all three scopes in `git log -L ,:`: Trace the evolution of the line range given by `,`, within the `` `git log -L //:`: Trace the evolution of the line range given by the function name regex ``, within the `` +`git log -`: Include last `` commits `git log `: Include commits that are reachable from `` `git log ^`: Exclude commits that are reachable from `` `git log ..`: Include commits that are reachable from `` but exclude those that are reachable from ``