##GitHub commit済ファイルの削除手順
$ git rm -rf ファイル名
rm 'ファイル名'
##GitHub commit前ファイルの削除手順
$ git rm remove.js
上記エラーが出た場合
error: the following file has changes staged in the index:
remove.js
(use --cached to keep the file, or -f to force removal)
ステージングされた状態のファイルをリポジトリから削除したい場合には、次のように "-f" オプションをつけて "git rm" を再実行します。
無事削除できました。