
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
一个简单易用的 VSCode 扩展,帮助您在 Git 提交时使用标准化的提交信息模板。
Ctrl+Shift+X(Windows/Linux)或Cmd+Shift+X(macOS)打开扩展视图{
"git-commit-template-helper.commitTemplates": [
{
"label": "feat: 新增功能",
"value": "✨feat: "
},
{
"label": "fix: 修复Bug",
"value": "🐛fix: "
}
// 添加更多自定义模板...
]
}
每个提交模板包含两个属性:
label: 显示在选择列表中的文本(不包含 emoji)value: 选择后填充到提交信息输入框中的文本(包含 emoji)如果您没有自定义配置,插件将使用以下默认模板:
| 显示文本 | 实际提交格式 | 说明 |
|---|---|---|
| feat: 新增功能 | ✨feat: | 新功能开发 |
| fix: 修复 Bug | 🐛fix: | Bug 修复 |
| chore: 非功能性更改 | 🚀chore: | 非功能性更改 |
| docs: 文档更新 | 📚docs: | 文档更新 |
| style: 样式修改 | 💄style: | 代码格式调整 |
| refactor: 代码重构 | ♻️refactor: | 代码重构 |
| test: 添加测试 | ✅test: | 测试用例 |
| ui: 界面样式调整 | 🎨ui: | UI 相关更改 |
| build: 构建相关 | 🔧build: | 构建系统或外部依赖更改 |
| ci: CI 配置更改 | 🔨ci: | CI 配置更改 |
| perf: 性能优化 | ⚡️perf: | 性能优化 |
| revert: 回退更改 | ⏪️revert: | 回退之前的提交 |
以下是一个自定义配置的完整示例:
{
"git-commit-template-helper.commitTemplates": [
{
"label": "feat: 新增功能",
"value": "✨feat: "
},
{
"label": "fix: 修复Bug",
"value": "🐛fix: "
},
{
"label": "docs: 文档更新",
"value": "📚docs: "
},
{
"label": "style: 样式修改",
"value": "💄style: "
},
{
"label": "refactor: 代码重构",
"value": "♻️refactor: "
},
{
"label": "test: 添加测试",
"value": "✅test: "
},
{
"label": "chore: 其他更改",
"value": "🚀chore: "
}
]
}
如果您想要修改或扩展此插件,可以按照以下步骤进行:
克隆仓库
git clone https://github.com/yourusername/git-commit-template-helper.git
cd git-commit-template-helper
安装依赖
npm install
打开 VSCode
code .
按 F5 启动调试
在新打开的 VSCode 窗口中测试插件
欢迎提交问题和功能请求!如果您想贡献代码,请随时提交 Pull Request。
本项目采用 MIT 许可证 - 详见 LICENSE 文件。
FAQs
一个帮助在Git提交时使用标准化提交信息模板的VSCode扩展
We found that zhubin.git-commit-template-helper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.