1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 04:55:23 +02:00

git rev-list: add --count example (#6459)

This commit is contained in:
marchersimon 2021-09-03 21:12:35 +02:00 committed by GitHub
parent e397df7543
commit 585954e9d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,3 +14,7 @@
- List all merge commits on a specific commit:
`git rev-list --merges {{commit}}`
- Print the number of commits since a specific tag:
`git rev-list {{tag_name}}..HEAD --count`