Laravel 安装器将支持 Git
发布时间 作者 Paul Redmond
Laravel 安装器将添加一项新功能,允许您立即为新的 Laravel 应用设置 Git 仓库,甚至将其推送到 GitHub
即将在 @laravelphp 安装器中添加 Git 支持!
— Dries Vints (@driesvints) 2021 年 3 月 1 日
使用已提交的骨架设置新的 Git 仓库。此外,将该 Git 仓库推送到 GitHub。立即开始将更改提交并推送到新的 Laravel 应用 ✨https://t.co/CJ2VFiLZXl
以下是一些新的安装选项示例(来自 PR 描述),这些选项将在该功能可用后出现
# Create a fresh Laravel app and `git init + commit`laravel new my-app.com --git # Same as above, but also create a private GitHub repolaravel new my-app.com --github # Same as above, but will commit Jetstream separatelylaravel new my-app.com --jet --github # Pass some custom flags to the underlying `gh` commandlaravel new my-app.com --github="--public --team laravel"
如上所示,安装器使用 GitHub CLI 根据您的配置设置创建私有的 GitHub 仓库。您需要先设置 gh
CLI 才能使用 --github
标志。
在撰写本文时,该功能仍在审核中,但很快就会发布。您可以在 laravel/installer PR #185 中关注并查看该功能背后的源代码。要特别感谢 Dries Vints 提交了该功能请求!
此外,请查看我们关于 更新 Laravel 安装器 的文章,以了解最新的安装器功能。