Complete the code to list all local branches in Git.
git [1]The git branch command lists all local branches in your repository.
Complete the code to list all branches, including remote branches.
git [1] -aThe git branch -a command lists all branches, both local and remote.
Fix the error in the command to list remote branches only.
git [1] -rThe correct command to list remote branches is git branch -r. The branch command with -r shows remote branches.
Fill both blanks to list all branches.
git [1] [2]
The git branch -a command lists all branches, both local and remote.
Fill all three blanks to list all branches with verbose and remote info.
git [1] [2] [3]
The command git branch -v -a lists all branches (local and remote) with verbose information. The -r option alone lists only remote branches, so -a is used to include all branches.