Skip to content

Latest commit

History

History
17 lines (13 loc) 路 338 Bytes

dry-runs.md

File metadata and controls

17 lines (13 loc) 路 338 Bytes

Dry Runs

To show the interactivity and the commands it would execute:

release-it --dry-run

Note that read-only commands are still executed ($ ...), while potentially writing/mutating commands are not (! ...):

$ git rev-parse --git-dir
.git
! git add package.json
! git commit --message="Release 0.8.3"