Complete the code to set your user email in Git configuration.
git config --global user.email [1]The correct way to set the email is without quotes, just the email address.
Complete the command to check the current Git configuration for user name.
git config --get [1]To get the user name, use user.name as the key.
Fix the error in the command to set the default branch name to 'main'.
git config --global init.[1] mainThe correct key is init.defaultBranch to set the default branch name.
Fill both blanks to create a Git alias named 'co' for 'checkout'.
git config --global alias.[1] [2]
Alias 'co' is commonly used for 'checkout' to speed up commands.
Fill all three blanks to configure Git to ignore file mode changes and set the editor to nano.
git config --global core.[1] false git config --global core.[2] [3]
Setting core.filemode to false tells Git to ignore file permission changes. Setting core.editor to nano sets nano as the default editor.