From f097aa18884686327a24b9c33eb0431928e5ec3e Mon Sep 17 00:00:00 2001 From: Caitlin Malloch Date: Sat, 13 Apr 2024 20:11:41 -0700 Subject: [PATCH] Add content to git-status.md --- git-status.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 git-status.md diff --git a/git-status.md b/git-status.md new file mode 100644 index 0000000..b9f4aa9 --- /dev/null +++ b/git-status.md @@ -0,0 +1,10 @@ +# Definition: git-status + +The git-status command allows the user to view the working directory and the staging area in the terminal. This command will show which files are: +1. Staged +2. Unstaged +3. Untracked + +It is a command that can help programmers see what's happening in a directory directly from the terminal and see the status of changes before commiting them. + +You can use thsi command similarly in the JupyterIDE by running shell commands, like !git status. I have a personal prefrence of using VCS as my editor of choice.