Git Push
Push local commits to the remote repository.
Workflow
When invoked with /push:
- •
Show commits to push
bashgit log --oneline origin/main..HEAD
- •
Push to remote
bashgit push origin HEAD
- •
Confirm success
bashgit status
Notes
- •Pushes current branch to origin
- •Shows unpushed commits before pushing