Complete the command to fetch the latest changes from the remote repository.
git [1] originThe git fetch command downloads commits, files, and refs from a remote repository into your local repo.
Complete the command to switch to the branch named 'feature-update'.
git [1] feature-updateThe git checkout command switches branches or restores working tree files.
Fix the error in the command to update your branch with the latest changes from 'main'.
git [1] origin mainThe git pull command fetches and merges changes from the remote branch into your current branch.
Fill both blanks to create a commit with a message describing the changes.
git [1] -m [2]
git commit -m "message" creates a commit with the given message describing your changes.
Fill all three blanks to update your branch with the latest 'main' branch changes using rebase.
git [1] [2] [3]
The command git rebase origin main reapplies your branch changes on top of the latest 'main' branch from the remote named 'origin'.