$ git status # On branch master # Untracked files: # (use "git add <file>..." to include in what will be committed) # # lib/x.c # lib/x.h nothing added to commit but untracked files present (use "git add" to track) 上記の通り新たにバージョン管理下に置くべきファイルを追加し忘れているというありさまです。 この場合、ミスを修正するコミットを行って git rebase -i で1つにまとめてしまってもよいのですが、 さすがにこの程度のことで git rebase -i を使うのは面倒臭いです。 どうすればよいでしょうか。 解決方法 git commit --amend を使います。