📜  如何“git status” - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:49.962000             🧑  作者: Mango

代码示例1
# Edit hello.py
git status
# hello.py is listed under "Changes not staged for commit"
git add hello.py
git status
# hello.py is listed under "Changes to be committed"
git commit
git status
# nothing to commit (working directory clean)