cursor 彻底解决了 git message 的问题。我设置了一个快捷键,点击后会自动保存文件,然后全都放进 git stage,调用 cursor 的生成提交命令,然后自动 push。一个快捷键节省一分钟。

[{
"command": "runCommands",
"key": "cmd+g cmd+g",
"args": {
"commands": [
"workbench.action.files.save",
"git.stageAll",
"cursor.generateGitCommitMessage",
"git.commit",
"git.push"
]
}
}]
 
 
Back to Top