Git で空コミットを作る
リポジトリを初期化したときの Initial commit 的なものだと、内容を何も含めずにコミットしたりする
--allow-empty
オプションをつけると、staged な内容が何もなくてもコミットを作れる
code:sh
git commit -m "init" --allow-empty