Files
my-worker/README.md
2018-01-02 11:55:42 +08:00

15 lines
486 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# JeeSite 4.0
Java EEJ2EE快速开发平台基于经典技术组合Spring Boot、Spring MVC、Apache Shiro、MyBatis、Beetl+AdminLTE/Bootstrap包括核心模块如组织机构、角色用户、权限授权、数据权限、内容管理、工作流等。
# Git 全局设置
```
1、提交检出均不转换换行符
git config --global core.autocrlf false
2、拒绝提交包含混合换行符的文件
git config --global core.safecrlf true
```