From fef8ba5506c829014416746c0e10233f8f60373d Mon Sep 17 00:00:00 2001 From: Jennifer Stubbs <52942431+jas58@users.noreply.github.com> Date: Mon, 13 Nov 2023 16:21:22 -0600 Subject: [PATCH] Remove Notepad for Windows Hi, just taught this today and wondered why Windows is isolated with notepad, since nano was used in the Unix Shell lesson. So I pulled the line mentioning notepad, edited the statement to be Win, Appl and LInux, and removed the box of code. It's a bit odd because we don't return to a text editor through the command line. I like the way the learners can see the same effect from the gui interface of editing a file to push and commit. So maybe there's another line left over in a different part of the lesson to also update about notepad and text editing. --- episodes/02-getting-started.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/episodes/02-getting-started.md b/episodes/02-getting-started.md index ac5ebbd1..1fad374b 100644 --- a/episodes/02-getting-started.md +++ b/episodes/02-getting-started.md @@ -95,14 +95,10 @@ Vi and Vim are popular editors for users of the BASH shell. If you will be using :::::::::::::::::::::::::::::::::::::::::::::::::: Any text editor can be made default by adding the correct file path and command line options (see [GitHub help](https://help.github.com/articles/associating-text-editors-with-git/)). -However, the simplest `core.editor` values are `"notepad"` on Windows, `"nano -w"` on Mac, and `"nano -w"` on Linux. +However, the simplest `core.editor` value is `"nano -w"` on Mac, Windows, and Linux. For example: -```bash -$ git config --global core.editor "notepad" -``` - ```bash $ git config --global core.editor "nano -w" ```