From b34f9133776e752f58c17aa64ac5fac6757e0c4c Mon Sep 17 00:00:00 2001 From: Jenny Bryan Date: Wed, 21 Feb 2018 14:50:07 -0800 Subject: [PATCH] Quote 'emacs' --- 08_install-introduce-self-git.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08_install-introduce-self-git.Rmd b/08_install-introduce-self-git.Rmd index 88fb5dac..9337827e 100644 --- a/08_install-introduce-self-git.Rmd +++ b/08_install-introduce-self-git.Rmd @@ -25,7 +25,7 @@ These commands return nothing. You can check that Git understood what you typed Another Git option that many people eventually configure is the editor. At some point, you will fail to give Git what it wants in terms of a commit message and it will kick you into an editor. This can be distressing, if it's not your editor of choice and you don't even know how to save and quit. You can enforce your will with something along these lines: ``` bash -git config --global core.editor emacs +git config --global core.editor 'emacs' ``` Substitute your preferred editor for `emacs` here.