Здравствуйте!
Не получается удалить файл.
Статус выдает такую картинку:
$ git status
On branch master
Your branch is up-to-date with 'origin/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: "install/SQLSRV/sqlsrv20 (\320\264\320\273\321\217 PHP 5.2 \320\270 5.3).rar"
no changes added to commit (use "git add" and/or "git commit -a")
Пытаюсь удалить разными способами, но безрезультатно:
$ git rm install/SQLSRV/"sqlsrv20 (\320\264\320\273\321\217 PHP 5.2 \320\270 5.3).rar"
fatal: pathspec 'install/SQLSRV/sqlsrv20 (\320\264\320\273\321\217 PHP 5.2 \320\270 5.3).rar' did not match any files
$ git rm ""install/SQLSRV/sqlsrv20 (\320\264\320\273\321\217 PHP 5.2 \320\270 5.3).rar""
bash: syntax error near unexpected token `('
$ git rm '"install/SQLSRV/sqlsrv20 (\320\264\320\273\321\217 PHP 5.2 \320\270 5.3).rar"'
fatal: pathspec '"install/SQLSRV/sqlsrv20 (\320\264\320\273\321\217 PHP 5.2 \320\270 5.3).rar"' did not match any files
$ git rm "install/SQLSRV/sqlsrv20 (\320\264\320\273\321\217 PHP 5.2 \320\270 5.3).rar"
fatal: pathspec 'install/SQLSRV/sqlsrv20 (\320\264\320\273\321\217 PHP 5.2 \320\270 5.3).rar' did not match any files
Подскажите, как выкрутиться в этой ситуации?