Created
October 3, 2025 11:51
-
-
Save jeroensmink98/ecdb80cdee68bb564fe87d4a6ef31b26 to your computer and use it in GitHub Desktop.
Cursor auto stage, commit and push
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"key": "cmd+g", | |
"command": "runCommands", | |
"args": { | |
"commands": [ | |
{ | |
"command": "git.stageAll" | |
}, | |
{ | |
"command": "cursor.generateGitCommitMessage" | |
}, | |
{ | |
"command": "git.commitAll" | |
}, | |
{ | |
"command": "git.sync" | |
} | |
] | |
} | |
}, | |
{ | |
"key": "cmd+t", | |
"command": "runCommands", | |
"args": { | |
"commands": [ | |
{ | |
"command": "git.stageAll" | |
}, | |
{ | |
"command": "cursor.generateGitCommitMessage" | |
}, | |
{ | |
"command": "git.commitAll" | |
} | |
] | |
} | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment