Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
既に存在していたファイルのいくつかにいくつかの変更があります。次に、使用して新しいファイルを追加しました
git add newfilename
まだコミットしていません。この新しいファイルを削除したいと思います。他のすべてのファイルの変更もリセットされるため、リセットを実行できません。これは望ましくありません。
git checkout newfilename私はいつもの推測deleteを試みrmましたが、助けにもなりませんでした。
git checkout newfilename
delete
rm
git reset newfilenameインデックスから削除され、通常どおり削除できます。
git reset newfilename
試してみてください
git rm --cached newfilename
少なくともインデックスから削除するには。
次のコマンドを使用して、ブランチからファイルを削除できます。
$git rm file_name