
技术相关
TPHP框架
TPHP是基于Laravel框架的基础上进行整合的一套便捷性框架,基于Laravel的Composer依赖管理开发。该框架具有高配置型代码设计,使得项目开发者更快速的开发项目,并减少大量BUG调试时间,在使用TPHP开发后台时开发速度将大幅度提升。
http://www.tphp.com
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Redmine搭建
1. 修改SELinux vim /etc/sysconfig/selinux # 将文件修改为 # This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of en原创 2020-08-25 10:31:41 · 346 阅读 · 0 评论 -
GIT 删除或修改所有历史记录
修改所有 git commit 信息 GIT_AUTHOR_EMAIL: 作者邮箱 git filter-branch --env-filter 'export GIT_AUTHOR_EMAIL=email' -f -- GIT_AUTHOR_NAME: 作者名称 git filter-branch --env-filter 'export GIT_AUTHOR_NAME=email' -f -- GIT_AUTHOR_EMAIL: 提交者邮箱 git filter-branch --env-filter原创 2020-08-25 10:04:00 · 702 阅读 · 0 评论