-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgit_editors.txt
More file actions
20 lines (20 loc) · 938 Bytes
/
git_editors.txt
File metadata and controls
20 lines (20 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
nano
$ git config --global core.editor "nano -w"
Text Wrangler
$ git config --global core.editor "edit -w"
Sublime Text (Mac)
$ git config --global core.editor "subl -n -w"
Sublime Text (Win, 32-bit install)
$ git config --global core.editor "'c:/program files (x86)/sublime text 3/sublime_text.exe' -w"
Sublime Text (Win, 64-bit install)
$ git config --global core.editor "'c:/program files/sublime text 3/sublime_text.exe' -w"
Notepad++ (Win)
$ git config --global core.editor "'c:/program files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin"
Kate (Linux)
$ git config --global core.editor "kate"
Gedit (Linux)
$ git config --global core.editor "gedit -s -w"
emacs
$ git config --global core.editor "emacs"
vim
$ git config --global core.editor "vim