1. ホーム
  2. git

[解決済み] Gitです。手動で削除したファイルをコミットするには?重複

2022-03-14 07:06:55

質問

git リポジトリで、手動でファイルを削除しました( rm ) を別のフォルダに移動した後、そのフォルダを その後、すべての変更を自分のレポにコミットしましたが、現在では git status .

ronnie@ronnie:/home/github/Vimfiles/Vim$ git status .
# On branch master
# Changes not staged for commit:
#   (use "git add/rm <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#       deleted:    plugin/dwm.vim
#
no changes added to commit (use "git add" and/or "git commit -a")

さて、どのようにコミットすれば dwm.vim はリモートリポジトリのプラグインフォルダから削除されます。私は git add && git commit が、コミット/追加するファイルがありません。 /plugin/dwm.vim はすでに削除されています。

解決方法は?

回答は ここで と思います。

をするとよいでしょう。 git rm <fileName> とはいえ。