From cea6bd8a415d0c21c7714934944d0b34fed5dd32 Mon Sep 17 00:00:00 2001 From: "Wolff, Benjamin" Date: Thu, 1 Dec 2022 08:36:16 +0100 Subject: [PATCH] Change output for git status to behaviour of recent git version The output of git status changed since git v2.9.1 (https://raw.githubusercontent.com/git/git/master/Documentation/RelNotes/2.9.1.txt): Instead of "working directory" git status now says "working tree". --- _episodes/04-changes.md | 4 ++-- _episodes/06-ignore.md | 4 ++-- _extras/discuss.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/_episodes/04-changes.md b/_episodes/04-changes.md index 5cc512ede2..4711d29759 100644 --- a/_episodes/04-changes.md +++ b/_episodes/04-changes.md @@ -163,7 +163,7 @@ $ git status ~~~ On branch main -nothing to commit, working directory clean +nothing to commit, working tree clean ~~~ {: .output} @@ -453,7 +453,7 @@ $ git status ~~~ On branch main -nothing to commit, working directory clean +nothing to commit, working tree clean ~~~ {: .output} diff --git a/_episodes/06-ignore.md b/_episodes/06-ignore.md index c43b5bdd04..14ced384f7 100644 --- a/_episodes/06-ignore.md +++ b/_episodes/06-ignore.md @@ -101,7 +101,7 @@ $ git status ~~~ On branch main -nothing to commit, working directory clean +nothing to commit, working tree clean ~~~ {: .output} @@ -139,7 +139,7 @@ Ignored files: c.dat results/ -nothing to commit, working directory clean +nothing to commit, working tree clean ~~~ {: .output} diff --git a/_extras/discuss.md b/_extras/discuss.md index 4e2e066fc4..4f87b557ab 100644 --- a/_extras/discuss.md +++ b/_extras/discuss.md @@ -242,7 +242,7 @@ $ git status ~~~ On branch main -nothing to commit, working directory clean +nothing to commit, working tree clean ~~~ {: .output}