Complete the command to set Vim as the default Git editor.
git config --global core.editor [1]This command sets Vim as the default editor for Git commit messages and other editing tasks.
Complete the command to set Visual Studio Code as the default Git editor.
git config --global core.editor [1]The '--wait' option tells Git to wait until the editor window is closed before continuing.
Fix the error in this command to set Nano as the Git editor.
git config --global core.editor [1]The '-w' flag tells Nano to disable wrapping, which is recommended for Git editor usage.
Fill both blanks to configure Git to use Emacs as the editor with no backup files.
git config --global core.editor "emacs [1] [2]"
Using '-nw' runs Emacs in no-window mode, and '-q' disables the startup message, making it cleaner for Git.
Fill all three blanks to set Sublime Text as the Git editor with wait option.
git config --global core.editor "[1] [2] [3]"
'subl' is the Sublime Text command, '-n' opens a new window, and '-w' tells Git to wait for the editor to close.