Which command shows the installed Git version?git version —showgit —versiongit version -vHow do you set your global user name in Git?git set user.name “Your Name”git config —global user.name “Your Name”git init —user “Your Name”Which command sets the default branch name for new repositories to main?git branch —default maingit config —global init.defaultBranch maingit config init.defaultBranch mainWhere should you usually set user.name and user.email?Globally, so it applies to all repositories on your machineOnly per repository, never globallyIn the remote server onlyWhich of the following is NOT a typical way to install Git on macOS?Install Xcode Command Line ToolsUse Homebrew: brew install gitDownload from the Microsoft StoreSubmit Print Lesson