Skip to content

Commit

Permalink
differences for PR #165
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed May 8, 2024
1 parent 618adf8 commit 2710d25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 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
2 changes: 1 addition & 1 deletion md5sum.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"contribute.md" "6f688a330994cf2ec8aab8076927dc05" "site/built/contribute.md" "2023-04-21"
"index.md" "773cf78e1289f5ca1461848f3c59dfdb" "site/built/index.md" "2023-04-21"
"episodes/01-what-is-git.md" "9b8eb4224703f7c67eb0bc969f2b6331" "site/built/01-what-is-git.md" "2023-10-17"
"episodes/02-getting-started.md" "9172e07296d1faf9f41b1fa4aff463ba" "site/built/02-getting-started.md" "2023-11-15"
"episodes/02-getting-started.md" "a706fb1eba599733b9f6513b218fe017" "site/built/02-getting-started.md" "2024-05-08"
"episodes/03-sharing.md" "fa93ae93bdde6c549f0a27449c537177" "site/built/03-sharing.md" "2023-04-21"
"episodes/04-review.md" "9e589dcefa2ff8f2d9ce79e2f5eda5df" "site/built/04-review.md" "2023-04-21"
"episodes/05-github-pages.md" "3557acd2d88322190d2a31282733cc05" "site/built/05-github-pages.md" "2023-04-21"
Expand Down

0 comments on commit 2710d25

Please sign in to comment.