git init 直後のコミットは git rebase -i HEAD@{1} ではrebaseできない。
user.name や user.email を設定し忘れて first commit しちゃったときに困ったりする。
そんなときは
% git rebase -i --root
各commitをeditし、 git commit --amend する。
commitのauthorを変えるには
% git commit --amend --author="YOUR NAME <your_name@example.com>"
歴史を書き換えるのでリモートにはforce pushが必要。