Complete the command to set your user name globally in Git.
git config --global user.name [1]The git config --global user.name "Your Name" command sets your user name for all repositories on your computer.
Complete the command to set your email only for the current Git repository.
git config [1] user.email "you@example.com"
The --local option sets the configuration only for the current repository.
Fix the error in the command to check the global user name configuration.
git config [1] user.nameTo view the global user name, use git config --global user.name.
Fill both blanks to list all Git configurations with their scope.
git config --[1] --[2]
The command git config --global --list shows all global configurations.
Fill all three blanks to set a local Git alias named 'co' for 'checkout'.
git config [1] alias.[2] [3]
Use git config --local alias.co checkout to create a local alias 'co' for 'checkout'.