0


Git报错fatal: this operation must be run in a work tree

项目场景:

学习git在初始化仓库后查看git状态是报错fatal: this operation must be run in a work tree:

在这里插入图片描述

问题描述

提示:这里描述项目中:

使用git init --bare 进行建立裸仓库之后,在使用git 其它的命令都会出现fatal:This operation must be run in a work tree 问题,处理方法:

    先touch readme 因为在创建裸仓库时,没有生成readme 文件,
    出现不能提交的情况。之后就可以使用git init,git add readme

解决方案:

解决方法:在该仓库目录下,新建文件夹,进入该文件夹,执行如下命令:

  1. touch Readme
  2. git init
  3. git add Readme
  4. git commit -m ‘initial commit’ Readm在这里插入图片描述
标签: git github

本文转载自: https://blog.csdn.net/weixin_45866832/article/details/126897006
版权归原作者 随心而梦 所有, 如有侵权,请联系我们删除。

“Git报错fatal: this operation must be run in a work tree”的评论:

还没有评论