How to change default GIT Editor to use the notepad or the notepad++ in command line
Step to change default GIT Editor
Replace the path of editor you want to use and run the command line below:
Example for notepad++:
32 bit NotePad++
git config --global core.editor "'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin"
64 bit NotePad++
git config --global core.editor "'C:/Program Files/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin"
Post a Comment
Thank for leaving message