git错误:fatal: Not a git repository (or any of the parent directories): .git 我用git add file添加文件时出现这样错误: fatal: Not a git repository (or any of the parent directories): .git 提示说没有.git这样一个目录,解决办法如下: git init就可以了!…
今天用git bash更新项目时遇到了无论使用什么命令都会报fatal: Not a git repository (or any of the parent directories): .git的情况.其实字面意思写得挺明显的:(当前)不是一个git的目录(或任何一个父目录),所以按照字面意思使用 git init 新建一个.git目录就能解决问题了.…
$ git remote add origin https://github.com/heyuanchao/YouxibiClient.gitfatal: Not a git repository (or any of the parent directories): .git 解决方法: git init…
在github上新建了一个仓库,然后相与本地的仓库联系起来 $ git remote add origin https://github.com/liona329/learngit.git fatal: Not a git repository (or any of the parent directories): .git 总是报这个错 解决方法:git init 成功…