天天看點

git:not a git repository (or any of the parent directories)

我用git add file添加檔案時出現了這樣錯誤:

fatal: Not a git repository (or any of the parent directories): .git

提示說沒有.git這樣一個目錄,解決辦法如下:

git init就可以了!

也就是說,在指令行敲入git init回車之後,再重新執行添加檔案的指令即可。

如下圖所示:

從圖中可以看出,問題已經解決。