写点什么

Git 报错:fatal: destination path ‘.‘ already exists and is not an empty directory.

作者:liuzhen007
  • 2021 年 12 月 18 日
  • 本文字数:555 字

    阅读完需:约 2 分钟

Git 报错:fatal: destination path ‘.‘ already exists and is not an empty directory.


目录

​​问题​​

​​解决​​

​​方法一、删除 .git 文件​​

​​方法二、新建目录​

​​总结


问题

今天执行 git clone 命令时遇到如下报错信息:


fatal: destination path '.' already exists and is not an empty directory.


解决

方法一、删除 .git 文件

正如报错信息所说的,当前目录已经存在了 git 工程,可以先执行如下命令:


rm -rf .git


再执行命令:


git clone https://git.data-mining.com/007/996.git


如果担心上述行为会影响本机现有的工程结构,可以尝试如下方法。


方法二、新建目录

熟悉 linux 命令都知道 rm -rf .git 命令会删除当前目录的 git 记录,如果没有把握的话,最好还是新建一个目录,比如 liuzhen007 目录,命令如下:


mkdir liuzhen007

cd liuzhen007


再执行工程 clone 命令,对应的命令如下:


git clone https://git.data-mining.com/007/996.git


总结

其实,在日常工作中,我们经常会遇到 Git 相关的问题,本人整理了相应的 Git 问题专栏,欢迎大家关注。


作者简介:大家好😄,我是 Data-Mining(liuzhen007),是一位音视频技术爱好者,前后就职于传统广电巨头和音视频互联网公司,具有丰富的音视频直播和点播相关经验,对 WebRTC、FFmpeg 和 Electron 有非常深入的了解,😄公众号:玩转音视频。同时也是 CSDN 博客专家、华为云社区云享专家、签约作者,欢迎关注我分享更多干货!😄

发布于: 3 小时前阅读数: 8
用户头像

liuzhen007

关注

敲代码,搞开发。 2021.05.01 加入

本人深耕音视频技术,走全栈路线,前后端通吃,兼顾各端与流媒体服务器。 博客主页地址:https://liuzhen.blog.csdn.net 微信公众号:玩转音视频 欢迎交流学习!

评论

发布
暂无评论
Git 报错:fatal: destination path ‘.‘ already exists and is not an empty directory.