When I'm using Git on Mac and need to do a rebase, the Vim editor kicks in by default. I would prefer Nano – could someone please explain how to reconfigure Git to make it use Nano for rebase?
Asked
Active
Viewed 7.4k times
3 Answers
225
git config --global core.editor "nano"
More information here:
https://git-scm.com/book/en/Customizing-Git-Git-Configuration
Toto
- 14,374
- 29
- 27
- 38
sunnyrjuneja
- 2,366
- 1
- 12
- 4
35
If you want to use nano as your editor for all things command line, add this to your bash_profile:
export EDITOR=/usr/bin/nano
This is assuming you're using the system nano. If not, edit to suit where your nano lives (e.g. /usr/local/bin, /opt/local/bin)
Remember to source your bash_profile after setting this or open a new terminal window for the settings to work...
phildobbin
- 451
- 3
- 4
-
-
4
-
Opening a new terminal window might not be enough to reload ``.bash_profile``. – Scott Jul 25 '19 at 04:40
3
I just learned a moment ago that there (on OSX anyway) is a file at /Users/<USER_NAME>/.gitconfig
$ sudo nano /Users/bob/.gitconfig
Then you should see something like this:
[user]
email = bob@sandwich.net
name = Bob Sandwich
[core]
editor = nano
[merge]
tool = vscode
[mergetool "vscode"]
cmd = "code --wait "
[diff]
tool = vscode
[difftool "vscode"]
cmd = "code --wait --diff "
After seeing that structure, you can intuitively understand something like (ie: core.editor):
git config --global core.editor "nano"
agm1984
- 149
- 3
-
-
WTF are you doing there? "sudo nano
"? And only for reading a file? To which you've got access anyway? How about... "cat – Alexander Skwar Jun 18 '21 at 07:33"?