From 2788c4c01f433928bfdaddb9a03b8591573050c8 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 30 Sep 2018 10:00:52 -0400 Subject: Mention more ways of specifying commit ranges --- git.sr.ht/send-email.md | 3 +++ 1 file changed, 3 insertions(+) (limited to 'git.sr.ht') diff --git a/git.sr.ht/send-email.md b/git.sr.ht/send-email.md index 9e6e6a9..5b6bb21 100644 --- a/git.sr.ht/send-email.md +++ b/git.sr.ht/send-email.md @@ -96,6 +96,9 @@ you're in a hurry, here are a few quick examples: - `HEAD^` just includes the last commit - `HEAD~3` includes the last three commits - `origin/master` includes all commits since diverging from `origin/master` +- `0fdbc0da` only includes commit `0fdbc0da` when specified with `-1` +- `0fdbc0da` includes commit `0fdbc0da` and the 2 commits prior when specified + with `-2` [rev-spec]: https://www.git-scm.com/docs/gitrevisions -- cgit