Syfmony 新项目目录。不为空错误

问题描述 投票:0回答:1

克隆现有的 git 存储库以安装新的 Symfony 后,由于我怀疑现有的 .git 文件夹,我收到错误项目目录不为空。从现有存储库开始安装 symfony 版本的推荐最佳实践/步骤是什么?

重现错误的步骤:
git 克隆 myrepo
cd myrepo
交响乐新. --网络应用程序

--> 您将收到此错误消息:
项目目录。不为空

git symfony clone git-clone
1个回答
0
投票

推荐的方法是创建项目,然后将其推送到某个远程存储库。

# This creates a folder named project-name
symfony new project-name

# Go inside this folder
cd project-name

# Add your remote repository
# When you create a repository on GitHub you can find this line in the main page of your repository
git remote add origin [address of the repository usually [email protected]:You/project-name.git]
git push --set-upstream origin main

您首先安装 Symfony,因为它使用 git 来初始化存储库(并创建

.git
文件夹)以避免在启动时执行一些命令,您只需将 init 推送到远程即可。

© www.soinside.com 2019 - 2024. All rights reserved.