`
haohappy2
  • 浏览: 325814 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

drush drupal feature

 
阅读更多

Drush is a shell utility that eases your life with Drupal. Bored of all these clicks? Let Drush help you! Even better: Features is well integrated into Drush and let you do everything via commands:

  • drush features to list all existing features and their state
  • drush fd <my_feature> (features-diff) to show the diff between the actual state of the feature and the code state
  • drush fe <my_feature> (features-export) to export a feature to a module
  • drush fr <my_feature> (features-revert) to revert/import a feature from the module code to the DB
  • drush fu <my_feature> (features-update) opposite as features-revert: updates the exported feature from the DB to the module code
  • ...
    so when you updated your feature and pushed it to your vcs, all your coworkers have to do is 
    $ drush fra to make sure the features latest versions are applied to the website.
分享到:
评论

相关推荐

    Drupal 8 Development cookbook 中文翻译版(非官方)

    Drupal 8是Drupal的一个主要版本,它在2016年3月发布。《Drupal 8 Development Cookbook》一书提供了一系列的解决方案,帮助开发者熟悉Drupal 8的诸多功能,并教会他们如何使用这些功能来创建内容丰富的网站。 由于...

    drush英文版学习指南

    《drush英文版学习指南》是一本针对Drupal用户及开发者的实用手册,旨在帮助读者更高效地使用drush——Drupal的强大命令行工具。本书由Juan Pablo Novillo Requena撰写,并于2012年由Packt Publishing出版。 #### ...

    Drupal7开发书籍

    - 安装完成后,可以通过 `drush` 命令来进行 Drupal 的各种管理操作,例如安装模块、更新数据库、清除缓存等。 - **创建 Drush 符号链接** - 如果希望在任何位置都能使用 Drush 命令而无需指定完整路径,则可以...

    drupal入门第一步

    "Drupal如何安装模块.docx"会指导你如何在Drupal网站后台或者通过命令行使用Drush来安装模块。首先,你需要在 Drupal.org 的模块页面找到所需的模块,下载其`.tar.gz`或`.zip`文件,然后在Drupal后台的“扩展”部分...

    dstack-drupal:具有drush支持的原型Drupal配置用于验证dStack的drupal集成点

    【标题】:“dstack-drupal:集成Drush的Drupal配置原型,用于测试dStack与Drupal的接口” 在本文中,我们将深入探讨“dstack-drupal”项目,这是一个专为验证dStack与Drupal集成点而设计的原型配置。该配置特别...

    Ansible-ansible-role-drush.zip

    本文将深入探讨Ansible的自动化功能以及Drush在Drupal运维中的运用,同时介绍如何通过Ansible的角色(Role)机制来整合Drush,实现更高效的Drupal网站部署与维护。 首先,让我们了解Ansible。Ansible是一个开源的...

    drupal高级开发手册

    - **工具推荐**:推荐使用Composer、Drush等工具来简化开发流程,提高效率。 - **环境优化**:提供关于如何优化Drupal性能的建议,包括缓存机制设置、数据库优化等。 #### 四、Drupal模块开发 - **模块生命周期**:...

    Drupal8 Configuration Management

    2. **配置导入与导出**:使用Drupal 8的`drush cex`或用户界面,可以方便地导出整个站点的配置,形成一个配置快照。同样,可以通过`drush cim`命令将配置导入到新的或现有的环境中,确保多个环境的一致性。 3. **...

    ansible-role-drush:Ansible角色-Drupal的Drush

    Drush极大地提高了Drupal开发者的工作效率,允许他们执行一系列日常任务,如更新模块、清理缓存、备份数据库、迁移数据等,而无需通过Drupal的Web界面。通过将Drush集成到Ansible剧本中,我们可以实现对多台服务器的...

    drupal7源码和文档

    此外,还会介绍如何使用Drush,这是一个强大的命令行工具,可以加速Drupal的开发流程,如安装和更新模块、备份数据库等。 在模块开发部分,你将学习到如何创建自定义模块,包括定义钩子、编写菜单、处理表单和数据...

    Drupal 8.0.0

    8. **JavaScript和CSS改进**: Drupal 8通过Webpack和Drush命令行工具优化了JS和CSS的处理,减少了前端资源的加载时间,提高了网站性能。 9. **CKEditor集成**: 内容编辑体验也得到了提升,通过集成CKEditor,提供了...

    Drupal.8.for.Absolute.Beginners.1430264667

    You will then use Drush to apply a theme to Drupal, customizing everything to your liking, before publishing your work to the world. The book also covers some more advanced topics that beginners ...

    erikwebb-drush:一个使用Drush安装和执行Drupal命令的Puppet模块

    Drush的人偶模块 ...要下载单个Drupal模块: drush::exec { 'drush-views-download': command =&gt; 'pm-download views', root_directory =&gt; '/var/www/html', } 依存关系 某些功能取决于其他模块:

    Drupal7 API

    可以通过Drupal的管理界面或者通过命令行工具(如Drush)来进行操作。 2. **编写自定义模块**:为了实现特定的功能,通常需要编写自定义模块。自定义模块应该包含必要的钩子函数和其他必要的代码。 3. **使用钩子**...

    drupal的数据模型之一——版本维护与多语种

    Drupal 社区提供了丰富的开发工具,如 Drush,这是一个命令行工具,能加速 Drupal 的安装、更新、备份等操作。此外,像 Devel 模块和 XHProf 工具可以帮助开发者调试和优化 Drupal 网站的性能。 在 Drupal 6 版本中...

    drupal8_example:Drupal 8 的示例模块

    Drupal 8 安装教程使用 Drush Drupal 8:创建我们的第一个模块 Drupal 8:驱动程序和路径 Drupal 8:插件。 区块创建 Drupal 8:表单 Drupal 8:单元测试 Drupal 8:集成测试 Drupal 8:使用特征 好好享受! ;)

    drupal8_codio:在裸机Codio框上运行的脚本和SQL,以使用Drush安装最新的Drupal 8代码

    一个简单的脚本和sql即可通过Drush在Codio盒子上安装选定版本的Drupal代码,以及它们所需的所有软件。 Codio startup.sh也将复制到工作区中,以便每次访问Codio框时都启动mysql和apache。 默认情况下,安装了8.0.x...

    Drush-6.0-2013-08-28-Installer-v1.0.21

    Drush 是 Drupal 的一个命令行外壳和脚本接口,名副其实的瑞士军刀,旨在使那些花费自己的工作时间在命令提示符下工作的开发者的生活更轻松。

Global site tag (gtag.js) - Google Analytics