美文网首页我爱编程
删除git本地仓库

删除git本地仓库

作者: zhyuzh3d | 来源:发表于2018-08-02 14:58 被阅读1次

    遇到fatal: destination path '.' already exists and is not an empty directory. 错误是指当前文件夹下已经存在git仓库,需要把旧的仓库删掉。

    .git是个隐藏文件,需要
    ls -a
    才能显示,然后
    rm -rf .git
    就可以干掉它了
    然后往上一层再
    rm -rf foldername
    就干净了。

    相关文章

      网友评论

        本文标题:删除git本地仓库

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