#yyds干货盘点# Git 报错(fatal: destination path ‘.‘ already exists and is not an empty directory.)
学向勤中得,萤窗万卷书。这篇文章主要讲述#yyds干货盘点# Git 报错:fatal: destination path ‘.‘ already exists and is not an empty directory.相关的知识,希望能为你提供帮助。
目录
??问题??
??解决??
??方法一、删除 .git 文件??
??方法二、新建目录??
问题今天执行 git clone 命令时遇到如下报错信息:
解决方法一、删除 .git 文件正如报错信息所说的,当前目录已经存在了 git 工程,可以先执行如下命令:
fatal: destination path . already exists and is not an empty directory.
再执行命令:
rm -rf .git
如果担心上述行为会影响本机现有的工程结构,可以尝试如下方法。
git clone https://git.data-mining.com/007/996.git
方法二、新建目录熟悉 linux 命令都知道 rm -rf .git 命令会删除当前目录的 git 记录,如果没有把握的话,最好还是新建一个目录,比如 liuzhen007 目录,命令如下:
再执行工程 clone 命令,对应的命令如下:
mkdir liuzhen007
cd liuzhen007
总结其实,在日常工作中,我们经常会遇到 Git 相关的问题,本人整理了相应的 Git 问题专栏,欢迎大家关注。
git clone https://git.data-mining.com/007/996.git
【#yyds干货盘点# Git 报错(fatal: destination path ‘.‘ already exists and is not an empty directory.)】作者简介:大家好
推荐阅读
- osi七层模型和TCP/IP五层模型TCP三次握手四次挥手TCP和UDP区别 网卡绑定bond0的实现
- #yyds干货盘点#Windows Server之AD域软件分发
- 了解DNS的作用,实际中给客户分配什么DNS地址好呢()
- #yyds干货盘点# MySQL性能优化(常见优化SQL的技巧)
- #yyds干货盘点#一次性解决text-justify,text-orientation等冷门属性文本属性
- #yyds干货盘点#一个方便的小系统,用于 CSS 中的动画入口
- #yyds干货盘点#最全深入浅出聊聊IO
- 如何基于 Docker 快速搭建 Springboot + Mysql + Redis 项目
- WordPress(按自定义日期字段排序WP_Query并在每个月后拆分循环)