--- name: gcp-copy description: TODO --- --- description: git commit and push --- // turbo 1. Add all changes to git ```powershell git add . ``` 2. Prompt the user for a commit message if one wasn't provided, otherwise use the provided context. 3. Commit the changes ```powershell git commit -m "commit message" ``` 4. Push the changes to the remote repository ```powershell git push ```