Complete the command to list all previous Firebase hosting releases.
firebase hosting:[1]:listThe firebase hosting:releases:list command lists all previous hosting releases, which helps you identify which version to rollback to.
Complete the command to rollback Firebase hosting to a specific release ID.
firebase hosting:releases:[1] --release <release_id>The firebase hosting:releases:rollback command rolls back your site to a previous release using the release ID.
Fix the error in the rollback command by choosing the correct flag to specify the release ID.
firebase hosting:releases:rollback [1]The correct flag to specify the release ID in rollback is --release.
Fill both blanks to complete the command that lists releases and then rollbacks to a specific release.
firebase hosting:[1]:list && firebase hosting:releases:[2] --release <release_id>
First, list the releases with firebase hosting:releases:list, then rollback with firebase hosting:releases:rollback using the release ID.
Fill all three blanks to complete the commands to list releases, rollback, and then verify the current hosting status.
firebase hosting:[1]:list && firebase hosting:releases:[2] --release <release_id> && firebase hosting:releases:[3]
Use firebase hosting:releases:list to list, firebase hosting:releases:rollback to revert, and firebase hosting:releases:list to check the current hosting state.