VSC远程链接使用copilot¶
1 远程使用 copilot¶
- 远程服务器配置增加
"remote.extensionKind": {
"GitHub.copilot": ["ui"],
"GitHub.copilot-chat": ["ui"],
"pub.name": [
"ui"
]
}
2 自动生成提交记录¶
远程连接启用 Copilot 后,对话与代码补全功能均可正常使用,但在源代码管理器面板中无法直接创建提交记录(本地操作无此问题)。可能是我相关设置未正确配置,最后选择手动生成 diff 文件,并借助聊天工具自动生成提交信息。
Please generate a commit message in Chinese based on the following guidelines:
Format:
type1 简明描述变更内容1
type2 简明描述变更内容2
Examples:
- feat 添加用户注册功能
- fix 修复密码强度验证逻辑错误
- style 统一组件命名格式
- refactor 重构通讯模块
- docs 更新文档
- perf 优化数据加载接口响应时间
Key Rules:
1. Use concise verbs to start the description.
2. Use the following types (or others as appropriate):feat: New features、fix: Bug fixes、style: Code style adjustments、refactor: Code refactoring、docs: Documentation updates、perf: Performance improvements.
3. New Rule: Allow multiple types in a single commit.
