0
0
Firebasecloud~10 mins

Rollback deployments in Firebase - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the command to list all previous Firebase hosting releases.

Firebase
firebase hosting:[1]:list
Drag options to blanks, or click blank then click option'
Areleases
Bdeploy
Crollback
Dinit
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'deploy' instead of 'releases' to list versions.
2fill in blank
medium

Complete the command to rollback Firebase hosting to a specific release ID.

Firebase
firebase hosting:releases:[1] --release <release_id>
Drag options to blanks, or click blank then click option'
Adeploy
Brollback
Creleases
Dserve
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'deploy' instead of 'rollback' for rollback operation.
3fill in blank
hard

Fix the error in the rollback command by choosing the correct flag to specify the release ID.

Firebase
firebase hosting:releases:rollback [1]
Drag options to blanks, or click blank then click option'
A--version
B--project
C--target
D--release
Attempts:
3 left
💡 Hint
Common Mistakes
Using '--version' or '--project' instead of '--release'.
4fill in blank
hard

Fill both blanks to complete the command that lists releases and then rollbacks to a specific release.

Firebase
firebase hosting:[1]:list && firebase hosting:releases:[2] --release <release_id>
Drag options to blanks, or click blank then click option'
Areleases
Brollback
Cdeploy
Dserve
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'deploy' instead of 'rollback' for the second command.
5fill in blank
hard

Fill all three blanks to complete the commands to list releases, rollback, and then verify the current hosting status.

Firebase
firebase hosting:[1]:list && firebase hosting:releases:[2] --release <release_id> && firebase hosting:releases:[3]
Drag options to blanks, or click blank then click option'
Areleases
Brollback
Clist
Ddeploy
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'deploy' instead of 'list' to check hosting state.