テクニカル雑記帳です
現在のブランチとインデックスの状態を確認する
$ git status
# 現在のブランチ
On branch origin
Your branch is up to date with 'origin/manage'.
# インデックスしていない変更がある場合表示される
Untracked files:
(use "git add <file>..." to include in what will be committed)
test.php
nothing added to commit but untracked files present (use "git add" to track)
# インデックスしているがコミットしていない変更がある場合表示される
Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: zipcode.csv
# 最新のコミット以後変更がない場合表示される
nothing to commit, working directory clean