美文网首页git&gerrit
Git "git add file ."命令报错does not

Git "git add file ."命令报错does not

作者: 漆先生 | 来源:发表于2022-02-26 14:56 被阅读0次

    执行git init后,再执行git add file . 报错does not have a commit checked out。
    执行了rm -rf .git删除操作没效果(只删除一级目录下的.git文件),是因为我建立的flutter工程还有其它子目录存在.git文件
    可以在文件夹里边搜索.git,手动把所有的.git文件删除。

    image.png

    接下来就能执行操作提交代码了

    git init
    git add file .( 有的不需要file,git add .)
    git commit -m "first commit"
    git remote add origin 仓库地址
    git push -u origin master
    

    相关文章

      网友评论

        本文标题:Git "git add file ."命令报错does not

        本文链接:https://www.haomeiwen.com/subject/edmqrrtx.html