Describe the request
Feature Request: Show detailed info in Git Push success notification
What I want
When a Git push succeeds, show a clear success message in the notification, for example:
Modified files [file1, file2, …] have been pushed to GitHub [owner/repo]
Why
Right now, a successful push often gives little feedback. I’d like to see:
Which files were pushed
Which GitHub repository they went to
This makes it clear that the push worked and what was synced.
Implementation suggestion
Use a short toast with file names (or a count) and the repo name
For many files, show a summary such as: “3 files pushed to owner/repo” with a “View details” option to expand the list
Keep the existing git.showPushSuccessNotification setting so users can opt in or out
Current behavior
VS Code provides git.showPushSuccessNotification, but it only shows a generic success message. Cursor inherits this and does not show the file list or repo name.
This change would make push results more transparent and easier to confirm. Thanks for considering it.