Skip to content

Commit

Permalink
remove dismissive language
Browse files Browse the repository at this point in the history
Remove language where terms are defined as "simply" something.
  • Loading branch information
maneesha authored May 8, 2024
1 parent b0d079c commit 9aec254
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions episodes/02-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ On a command line interface, Git commands are written as `git verb options`,
where `verb` is what we actually want to do and `options` is additional optional information which may be needed for the `verb`. So let's get started with our setup.

We will now create an empty git repository to track changes to our project. To do this we will use the git **init** command,
which is simply short for *initialise*.
which is short for *initialise*.

```bash
$ git init
Expand All @@ -148,7 +148,7 @@ The `hello-world` directory is now a git repository.
If we run the `ls` command now (`ls` lists the content of the `hello-world`
directory), the repository might seem empty; however, adding the `-a` flag
for all files via `ls -a` will show all hidden files, which in this case
includes the new hidden directory `.git`. Flags can simply be thought of as command line options that can be added to shell commands.
includes the new hidden directory `.git`. Flags can be thought of as command line options that can be added to shell commands.

Note that whenever we use git via the command line, we need to preface each command (or verb) with `git`, so that the computer knows
we are trying to get git to do something, rather than some other program.
Expand Down

0 comments on commit 9aec254

Please sign in to comment.