优雅硬币

文章
6
资源
0
加入时间
2年10月17天

git fatal: destination path ‘**‘ already exists and is not an empty directory.解决

网上说需要删除或者重新命名已经存在的本地文件,然后在clone 其实不用。第一步 :进入到已存在的目录 cd (/file)第二步: 初始化git init第三步: 添加远程仓库地址 git remote add origin (address)第四步: 添加本地代码 git add .第五步: 提交本地代码 git commit -m “init”第六步: 提交到远程仓库...