gitコマンドのstatusサブコマンドを使う。
リポジトリが作成されていないディレクトリでは以下のように表示される。
>git status
fatal: not a git repository (or any of the parent directories): .git
リポジトリを作成したばかりのディレクトリでは以下のように表示される。
>git status
On branch master
No commits yet
Untracked files:
(use "git add <file>..." to include in what will be committed)
(以下、表示省略)
一つのファイルをステージした後は、以下のように表示されるはず。
>git status
On branch master
No commits yet
Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: ○○○
Untracked files:
(use "git add <file>..." to include in what will be committed)
(以下、表示省略)