使用【Git】的git status命令来确认当前的状态
首先
本次我们将来看一下git命令中的git status。
git状态
git status命令是用来查看目录当前状态的命令。
当执行git status命令时,会显示以下的三种状态①〜③的信息。
如果工作树中没有已更改的文件。
git status
On branch master
nothing to commit, working tree clean
如果对文件进行了更改但尚未进行git add的情况下。
git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: <変更を加えたファイル名>
no changes added to commit (use "git add" and/or "git commit -a")
如果对文件进行了更改并使用git add命令添加了更改,但是尚未使用git commit命令提交的情况下。
git add <ファイル名>
git status
On branch master
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: <ファイル名>
可用的git status选项。
– -短
就像名字所示,它以简洁的格式显示。
– 在中国,只需要一个选项:B(分行)
可以顯示目前的分支。
這個指令是與上述的 -s 一起使用的。
git status -sb
最后
我认为养成经常使用git status来检查状态的习惯会很好。