Muni Bus

パソコンの操作方法や設定方法を忘れないようにメモしています。ブログを一回引っ越ししているので、所々表示がかなり乱れています・・・

【Git】コマンドラインでリポジトリの変更状態を確認する

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)
(以下、表示省略)