当前位置:   article > 正文

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

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

当从github.com上面下载下了Firmware后,无意中删除了Firmware目录下的.git文件夹,再去编译就会出现:
  fatal: Not a git repository (or any of the parent directories)
的错误。这是由于本地版本管理仓库被删除了,需要重新初始化仓库,建立新的仓库:
  git init
这里写图片描述
  再次去编译又会出现如下错误:
  fatla: bad default revision ‘HEAD’
这是由于仓库里没有任提交在里面,所以它会报这个错。再执行下面的命令:
查看仓库状态:
  git status
添加本地工程所有文件到仓库中:
  git add -A
提交到仓库:
  git commit -m “custom your message”
这里写图片描述
再次去编译就不会有问题了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/678708
推荐阅读
相关标签
  

闽ICP备14008679号