@@ -380,8 +380,8 @@ change to the project.
380380 ('author' (SP <name>)? SP LT <email> GT SP <when> LF)?
381381 'committer' (SP <name>)? SP LT <email> GT SP <when> LF
382382 data
383- ('from' SP <committish > LF)?
384- ('merge' SP <committish > LF)?
383+ ('from' SP <commit-ish > LF)?
384+ ('merge' SP <commit-ish > LF)?
385385 (filemodify | filedelete | filecopy | filerename | filedeleteall | notemodify)*
386386 LF?
387387....
@@ -460,9 +460,9 @@ as the current commit on that branch is automatically assumed to
460460be the first ancestor of the new commit.
461461
462462As `LF` is not valid in a Git refname or SHA-1 expression, no
463- quoting or escaping syntax is supported within `<committish >`.
463+ quoting or escaping syntax is supported within `<commit-ish >`.
464464
465- Here `<committish >` is any of the following:
465+ Here `<commit-ish >` is any of the following:
466466
467467* The name of an existing branch already in fast-import's internal branch
468468 table. If fast-import doesn't know the name, it's treated as a SHA-1
@@ -509,7 +509,7 @@ additional ancestors (forming a 16-way merge). For this reason
509509it is suggested that frontends do not use more than 15 `merge`
510510commands per commit; 16, if starting a new, empty branch.
511511
512- Here `<committish >` is any of the commit specification expressions
512+ Here `<commit-ish >` is any of the commit specification expressions
513513also accepted by `from` (see above).
514514
515515`filemodify`
@@ -677,8 +677,8 @@ paths for a commit are encouraged to do so.
677677`notemodify`
678678^^^^^^^^^^^^
679679Included in a `commit` `<notes_ref>` command to add a new note
680- annotating a `<committish >` or change this annotation contents.
681- Internally it is similar to filemodify 100644 on `<committish >`
680+ annotating a `<commit-ish >` or change this annotation contents.
681+ Internally it is similar to filemodify 100644 on `<commit-ish >`
682682path (maybe split into subdirectories). It's not advised to
683683use any other commands to write to the `<notes_ref>` tree except
684684`filedeleteall` to delete all existing notes in this tree.
@@ -691,7 +691,7 @@ External data format::
691691 commit that is to be annotated.
692692+
693693....
694- 'N' SP <dataref> SP <committish > LF
694+ 'N' SP <dataref> SP <commit-ish > LF
695695....
696696+
697697Here `<dataref>` can be either a mark reference (`:<idnum>`)
@@ -704,13 +704,13 @@ Inline data format::
704704 command.
705705+
706706....
707- 'N' SP 'inline' SP <committish > LF
707+ 'N' SP 'inline' SP <commit-ish > LF
708708 data
709709....
710710+
711711See below for a detailed description of the `data` command.
712712
713- In both formats `<committish >` is any of the commit specification
713+ In both formats `<commit-ish >` is any of the commit specification
714714expressions also accepted by `from` (see above).
715715
716716`mark`
@@ -741,7 +741,7 @@ lightweight (non-annotated) tags see the `reset` command below.
741741
742742....
743743 'tag' SP <name> LF
744- 'from' SP <committish > LF
744+ 'from' SP <commit-ish > LF
745745 'tagger' (SP <name>)? SP LT <email> GT SP <when> LF
746746 data
747747....
@@ -786,11 +786,11 @@ branch from an existing commit without creating a new commit.
786786
787787....
788788 'reset' SP <ref> LF
789- ('from' SP <committish > LF)?
789+ ('from' SP <commit-ish > LF)?
790790 LF?
791791....
792792
793- For a detailed description of `<ref>` and `<committish >` see above
793+ For a detailed description of `<ref>` and `<commit-ish >` see above
794794under `commit` and `from`.
795795
796796The `LF` after the command is optional (it used to be required).
0 commit comments