diff --git a/.image/common/ai-feature.png b/.gitee/image/common/ai-feature.png similarity index 100% rename from .image/common/ai-feature.png rename to .gitee/image/common/ai-feature.png diff --git a/.image/common/ai-preview.gif b/.gitee/image/common/ai-preview.gif similarity index 100% rename from .image/common/ai-preview.gif rename to .gitee/image/common/ai-preview.gif diff --git a/.image/common/bpm-feature.png b/.gitee/image/common/bpm-feature.png similarity index 100% rename from .image/common/bpm-feature.png rename to .gitee/image/common/bpm-feature.png diff --git a/.image/common/crm-feature.png b/.gitee/image/common/crm-feature.png similarity index 100% rename from .image/common/crm-feature.png rename to .gitee/image/common/crm-feature.png diff --git a/.image/common/erp-feature.png b/.gitee/image/common/erp-feature.png similarity index 100% rename from .image/common/erp-feature.png rename to .gitee/image/common/erp-feature.png diff --git a/.image/common/infra-feature.png b/.gitee/image/common/infra-feature.png similarity index 100% rename from .image/common/infra-feature.png rename to .gitee/image/common/infra-feature.png diff --git a/.image/common/mall-feature.png b/.gitee/image/common/mall-feature.png similarity index 100% rename from .image/common/mall-feature.png rename to .gitee/image/common/mall-feature.png diff --git a/.image/common/mall-preview.png b/.gitee/image/common/mall-preview.png similarity index 100% rename from .image/common/mall-preview.png rename to .gitee/image/common/mall-preview.png diff --git a/.image/common/project-vs.png b/.gitee/image/common/project-vs.png similarity index 100% rename from .image/common/project-vs.png rename to .gitee/image/common/project-vs.png diff --git a/.image/common/ruoyi-vue-pro-architecture.png b/.gitee/image/common/ruoyi-vue-pro-architecture.png similarity index 100% rename from .image/common/ruoyi-vue-pro-architecture.png rename to .gitee/image/common/ruoyi-vue-pro-architecture.png diff --git a/.image/common/ruoyi-vue-pro-biz.png b/.gitee/image/common/ruoyi-vue-pro-biz.png similarity index 100% rename from .image/common/ruoyi-vue-pro-biz.png rename to .gitee/image/common/ruoyi-vue-pro-biz.png diff --git a/.image/common/system-feature.png b/.gitee/image/common/system-feature.png similarity index 100% rename from .image/common/system-feature.png rename to .gitee/image/common/system-feature.png diff --git a/.image/common/yudao-cloud-architecture.png b/.gitee/image/common/yudao-cloud-architecture.png similarity index 100% rename from .image/common/yudao-cloud-architecture.png rename to .gitee/image/common/yudao-cloud-architecture.png diff --git a/.image/common/yudao-roadmap.png b/.gitee/image/common/yudao-roadmap.png similarity index 100% rename from .image/common/yudao-roadmap.png rename to .gitee/image/common/yudao-roadmap.png diff --git a/.image/demo/vben.png b/.gitee/image/demo/vben.png similarity index 100% rename from .image/demo/vben.png rename to .gitee/image/demo/vben.png diff --git a/.image/wx-xingyu.png b/.gitee/image/wx-xingyu.png similarity index 100% rename from .image/wx-xingyu.png rename to .gitee/image/wx-xingyu.png diff --git a/.image/工作流设计器-bpmn.jpg b/.gitee/image/工作流设计器-bpmn.jpg similarity index 100% rename from .image/工作流设计器-bpmn.jpg rename to .gitee/image/工作流设计器-bpmn.jpg diff --git a/.image/工作流设计器-simple.jpg b/.gitee/image/工作流设计器-simple.jpg similarity index 100% rename from .image/工作流设计器-simple.jpg rename to .gitee/image/工作流设计器-simple.jpg diff --git a/.github/commit-convention.md b/.github/commit-convention.md deleted file mode 100644 index a1a969e99..000000000 --- a/.github/commit-convention.md +++ /dev/null @@ -1,89 +0,0 @@ -## Git Commit Message Convention - -> This is adapted from [Angular's commit convention](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular). - -#### TL;DR: - -Messages must be matched by the following regex: - -```js -/^(revert: )?(feat|fix|docs|style|refactor|perf|test|workflow|build|ci|chore|types|wip): .{1,50}/; -``` - -#### Examples - -Appears under "Features" header, `dev` subheader: - -``` -feat(dev): add 'comments' option -``` - -Appears under "Bug Fixes" header, `dev` subheader, with a link to issue #28: - -``` -fix(dev): fix dev error - -close #28 -``` - -Appears under "Performance Improvements" header, and under "Breaking Changes" with the breaking change explanation: - -``` -perf(build): remove 'foo' option - -BREAKING CHANGE: The 'foo' option has been removed. -``` - -The following commit and commit `667ecc1` do not appear in the changelog if they are under the same release. If not, the revert commit appears under the "Reverts" header. - -``` -revert: feat(compiler): add 'comments' option - -This reverts commit 667ecc1654a317a13331b17617d973392f415f02. -``` - -### Full Message Format - -A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**: - -``` -(): - - - -