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マージの競合中に、「e--abort」という名前のファイルを作成しました
ファイルを削除しようとしています:
$ rm ./e --abort
そしてこれを入手してください:
rm:認識されないオプション `--abort '
また試した:
$ git rm --e --abort
そして得た:
致命的:pathspec'e'はどのファイルとも一致しませんでした
ダッシュが最初にないので、これは私にとってはうまくいきませんでした
ファイル名のスペースをエスケープしてみてください。rm ./e\ --abort
rm ./e\ --abort
ファイル名を一重引用符で囲みます。
rm 'e --abort'
また、タブが完了したときにシェルが自動エスケープを行う場合は、通常、次のことができます。
rm e<tab> => rm e\ --abort