git: add git log filter for last N commits`

This commit is contained in:
Marcello 2024-05-06 09:58:46 +02:00
parent 6ebf5f4f11
commit fa53e07972
No known key found for this signature in database

View file

@ -111,6 +111,7 @@ The applied config in each repository is the combination of all three scopes in
`git log -L <start>,<end>:<file>`: Trace the evolution of the line range given by `<start>,<end>`, within the `<file>`
`git log -L /<regex>/:<file>`: Trace the evolution of the line range given by the function name regex `<regex>`, within the `<file>`
`git log -<n>`: Include last `<n>` commits
`git log <rev>`: Include commits that are reachable from `<rev>`
`git log ^<rev>`: Exclude commits that are reachable from `<rev>`
`git log <rev1>..<rev2>`: Include commits that are reachable from `<rev2>` but exclude those that are reachable from `<rev1>`