diff options
Diffstat (limited to 'git.sr.ht')
-rw-r--r-- | git.sr.ht/send-email.md | 3 |
1 files changed, 3 insertions, 0 deletions
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 |