13
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

fatal: pathspec '.' did not match any filesの解決方法

Posted at

久々にgitがいうことを聞かない

問題のコマンド

.gitignoreを変更したので、全ての管理ファイルに対して適用させたかったのでいつも通り以下のコマンドを打った。

# .gitignoreに定義したファイルがgit上から消え去るが、手元の環境には残るはずだった。
git rm -r --cached .
# エラー
fatal: pathspec '.' did not match any files

gitの管理対象になっていないファイルが存在するとダメっぽくてうまくいかないんだろうなぁと予想。

....お見事、的中しました。
https://qiita.com/pugiemonn/items/2f6af4467b33ed3f41b5

結果

git rm -r --cached --ignore-unmatch .

でとおった。

13
14
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?