# push-to-dev > Workflow to commit local changes and push to the remote dev branch. - Author: Sanjeev Pai - Repository: texandesi/OKR - Version: 20260125222007 - Stars: 1 - Forks: 0 - Last Updated: 2026-02-07 - Source: https://github.com/texandesi/OKR - Web: https://mule.run/skillshub/@@texandesi/OKR~push-to-dev:20260125222007 --- --- name: push-to-dev description: Workflow to commit local changes and push to the remote dev branch. --- # Push to Dev Workflow 1. **Check Status** ```bash git status ``` 2. **Add Changes** ```bash git add . ``` 3. **Commit** - Prompt the user for a commit message if one hasn't been provided. ```bash git commit -m "Your commit message here" ``` 4. **Push to Remote** ```bash git push origin dev ```