Laravel Forge deploy和Git

jpfvwuh4  于 2023-09-29  发布在  Git
关注(0)|答案(2)|浏览(107)

最近我设置了Laravel Forge,但我一直遇到部署问题。它总是在部署过程中抛出错误-我已经粘贴在下面。
我该如何解决这个问题?

U   app/storage/logs/laravel.log
U   vendor/autoload.php
U   vendor/composer/autoload_classmap.php
U   vendor/composer/autoload_real.php
Pull is not possible because you have unmerged files.
Please, fix them up in the work tree, and then use 'git add/rm <file>'
as appropriate to mark resolution, or use 'git commit -a'.
ie3xauqp

ie3xauqp1#

“无法提取,因为您有未合并的文件。”

  • 选项1 -您可能正在手动更改服务器上的文件,这是不应该的。
  • 选项2 -您将vendor文件存储在git上,这是不应该的,并且存在冲突(您不应该将vendor文件夹保存在git上)
sxissh06

sxissh062#

只需在项目目录下的服务器上执行git stash,就可以很好地部署了

相关问题