From d6d6a14b916762e19e17c297a29df6e9596f1d59 Mon Sep 17 00:00:00 2001 From: Jan Dvorak Date: Tue, 21 Nov 2023 21:07:33 +0100 Subject: [PATCH 1/3] Stress the importance of `git status` (#685) --- episodes/03-create.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/episodes/03-create.md b/episodes/03-create.md index 2dfb60f72e..ab8e452e02 100644 --- a/episodes/03-create.md +++ b/episodes/03-create.md @@ -95,8 +95,8 @@ $ 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: +And now we will use what I think is the most important Git command: `git status` reports on the status of our project. +It's the Git equivalent of listing a directory in a shell. ```bash $ git status From a92324ff3f0a2ec1cabd99eea01d6e980302bdc6 Mon Sep 17 00:00:00 2001 From: Jan Dvorak Date: Tue, 21 Nov 2023 21:43:43 +0100 Subject: [PATCH 2/3] Improve the description of what `git status` does --- episodes/03-create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/03-create.md b/episodes/03-create.md index ab8e452e02..ec9cc19917 100644 --- a/episodes/03-create.md +++ b/episodes/03-create.md @@ -96,7 +96,7 @@ Switched to a new branch 'main' ``` And now we will use what I think is the most important Git command: `git status` reports on the status of our project. -It's the Git equivalent of listing a directory in a shell. +It 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. ```bash $ git status From be32f7d8bfce64376b39e1ef3bf593bc1aed0657 Mon Sep 17 00:00:00 2001 From: Martino Sorbaro Date: Wed, 3 Jul 2024 08:10:12 +0200 Subject: [PATCH 3/3] Improve formulations introducing `git status` --- episodes/03-create.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/episodes/03-create.md b/episodes/03-create.md index ec9cc19917..8bc768ea65 100644 --- a/episodes/03-create.md +++ b/episodes/03-create.md @@ -95,8 +95,7 @@ $ git checkout -b main Switched to a new branch 'main' ``` -And now we will use what I think is the most important Git command: `git status` reports on the status of our project. -It 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 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