コミット時に–allow-emptyオプションを用いることで、
ファイルがインデックスに追加されていなくてもコミットできます。
手順
以下のコマンドを実行する。
git commit --allow-empty -m "first commit"
以下のコマンドを実行することで、コミットされているかを確認できる。
git log
参考
- Git – git-commit Documentation
https://git-scm.com/docs/git-commit#Documentation/git-commit.txt—allow-empty - Gitの最初のコミットは空コミットにしよう
https://qiita.com/NorsteinBekkler/items/b2418cd5e14a52189d19