GITを使用してディレクトリ全体を削除したいのですが...同じエラーが発生したたびに、なぜこれが起こっているのか理解できないたびに、私は "blue_white" フォルダを削除するGIT rmを使用したCant rmフォルダ?
...
├── css
│ ├── design.css
│ └── red_white.css
├── images
│ ├── blue_white
│ │ ├── accordion-button.png
│ │ ├── accordion-shadow.png
│ │ ├── button1.png
│ │ ├── oem-slide-shadow.png
│ │ └── truncate-arrow.png
│ └── red_white
│ ├── accordion-shadow.png
└── pages.xml
私はこれを行う...
git rm -r blue_white/
私はこれを取得...
fatal: pathspec 'f04/blue_white/' did not match any files
'images/blue_white /'ディレクトリを完全に削除したいのですか、単にgitコントロールから削除しますか? –