「Git入門」git statusコマンドの使い方
1.コミットされたファイルの確認
$ git commit -m “this is a sample comment"
$ git status
2.追跡されていないファイルの確認
$ git status
Untracked files:
(use “git add <file>…" to include in what will be committed)
xxx
3.修正されたファイルの確認
$ git status
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: xxxx
4.ステージされたファイルの確認
$ git status
Changes to be committed:
(use “git restore –staged <file>…" to unstage)
new file: xxx
5.削除されたファイルの確認
$ git rm test.java
$ git status