fix: Update packages and fix local dev (#26907)
<!-- Please follow this checklist and put an x in each of the boxes, like this: [x]. It will ensure that our team takes your pull request seriously. --> - [x] I have read [freeCodeCamp's contribution guidelines](https://github.com/freeCodeCamp/freeCodeCamp/blob/master/CONTRIBUTING.md). - [x] My pull request has a descriptive title (not a vague title like `Update index.md`) - [x] My pull request targets the `master` branch of freeCodeCamp.
This commit is contained in:
committed by
mrugesh mohapatra
parent
153e1c9f38
commit
7da04a348b
15
mock-guide/english/git/git-status/index.md
Normal file
15
mock-guide/english/git/git-status/index.md
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
title: Git Status
|
||||
---
|
||||
## Git Status
|
||||
|
||||
The `git status` commands displays the state of the working directory and the staging area. It displays paths that have differences between the `index` file and the current `HEAD` commit, paths that have differences between the working tree and the `index` file, and paths in the working tree that are not tracked by Git (and are not ignored by [gitignore](https://git-scm.com/docs/gitignore)
|
||||
|
||||
`git status` command output does not show you any information regarding the committed project history. For this, you need to use `git log`.
|
||||
|
||||
### Usage
|
||||
```shell
|
||||
git status
|
||||
```
|
||||
|
||||
List which files are staged, unstaged, and untracked.
|
Reference in New Issue
Block a user