CLI Documentation
The standard convention for specifying required placeholder variables is to
enclose it with < angle brackets >. In the example below <commit-hash>
indicates that a commit hash should be specified:
git revert <commit-hash>For optional placeholder variables it is convention to enclose it with [ square brackets ]:
git revert [--no-commit] <commit-hash>The [--no-commit] part indicates that the --no-commit flag is optional.