Skip to content

Commit

Permalink
Merge pull request #980 from jdvorak001/patch-1
Browse files Browse the repository at this point in the history
Stress the importance of `git status` (#685)
  • Loading branch information
martinosorb authored Jul 3, 2024
2 parents 6ac14c6 + be32f7d commit 6b470fd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions episodes/03-create.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ $ git checkout -b main
Switched to a new branch 'main'
```

We can check that everything is set up correctly
by asking Git to tell us the status of our project:
We can now start using one of the most important git commands, which is particularly helpful to beginners. `git status` tells us the status of our project, and better, a list of changes in the project and options on what to do with those changes. We can use it as often as we want, whenever we want to understand what is going on.

```bash
$ git status
Expand Down

0 comments on commit 6b470fd

Please sign in to comment.