# GCP

> TODO

- Skill: `majiayu000/gcp-4` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add majiayu000/gcp-4`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/gcp-4/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/majiayu000/gcp-4

---

---
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
```


