将 GIT 与 PHP 框架结合使用,并更新该框架
我已经阅读了一些相关内容,但认为特定的帖子可能会有所帮助。
假设我在一些自定义项目中使用 FuelPHP 框架,而这些人发布了该框架的新更新。我的项目已经有一个项目的 GIT 存储库,其中包含我的所有自定义脚本/视图/库等。
我可以将更新的框架添加为远程框架并从中提取吗?它会更新框架文件而不搞砸我构建应用程序时所做的所有自定义工作吗?我正在尝试将 GIT 的使用提升到一个新的水平,使更新框架和部署到我的服务器变得容易。
I've done some reading on this but figured a specific post might be helpful.
Let's say I'm using FuelPHP framework on some custom projects, and those guys release a new update to the framework. My project already has a GIT repository of the project with all my custom scripts/views/libraries, etc.
Can I add the updated framework as a remote, and pull from it? Will it update the framework files without screwing up all of the custom work I did building the app? I'm trying to take my use of GIT to the next level, making it easy to update frameworks and deploy to my servers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会考虑使用 Git 子模块。这样,您几乎可以将 Fuel 用作它自己的存储库,可以独立于结构的其余部分进行更新和拉取。
I'd take a look at using Git Submodules. That way, you can use Fuel almost as it's own repository, that can be updated and pulled independent from the rest of your structure.