From 6f7f20333878a87fbe553d99bcfc9ab635df6fef Mon Sep 17 00:00:00 2001 From: smirandou <90630377+smirandou@users.noreply.github.com> Date: Thu, 17 Feb 2022 10:20:03 -0500 Subject: [PATCH] add git status to cheat sheet more practice 2/17 --- resources/cheatsheet.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/resources/cheatsheet.md b/resources/cheatsheet.md index 552bc71..7e2133c 100644 --- a/resources/cheatsheet.md +++ b/resources/cheatsheet.md @@ -43,6 +43,11 @@ List the contents of the directory: ls ``` +Shows the differences between the index file and the current file. Git status displays the current state of the working directory. +``` +git status +``` + ## Wildcard / Kleene star The wildcard character in bash `*` works by expanding in place to separate arguments that match whatever pattern you're writing.