Git - Configuration and Aliases
Which of the following commands correctly sets the user email only for the current Git project?
git config without --global or --system sets local config for the current project.git config --local is valid but optional; git config user.email "user@example.com" is the simplest correct form.git config without --global [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions