Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions version-control/command-line/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ $ git diff
The -/+ indications you can see mean

**-** indicates lines removed from the code.

**+** indicates lines added to the code.

```bash
Expand All @@ -220,6 +220,7 @@ index 21f15d1..c2031f1 100644
### After you verify your change, commit and push them

```bash
$ git add .
$ git commit -m 'Added git status description'
$ git push origin master
```
Expand All @@ -229,7 +230,7 @@ $ git push origin master
Edit the index.html file and then check the changes.

```bash
$ echo "oh no!" > index.html
$ echo 'oh no!' > index.html
```

> Have a look at changes to the file using `git diff`
Expand Down