本文主要是介绍git fatal: destination path ‘**‘ already exists and is not an empty directory.解决,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
欢迎大家关注我的公众号【老周聊架构】,Java后端主流技术栈的原理、源码分析、架构以及各种互联网高并发、高性能、高可用的解决方案。
网上说需要删除或者重新命名已经存在的本地文件,然后在clone 其实不用。
第一步 :进入到已存在的目录 cd (/file)
第二步: 初始化git init
第三步: 添加远程仓库地址 git remote add origin (address)
第四步: 添加本地代码 git add .
第五步: 提交本地代码 git commit -m “init”
第六步: 提交到远程仓库 git push -u origin master
这篇关于git fatal: destination path ‘**‘ already exists and is not an empty directory.解决的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!