Metadata-Version: 2.4
Name: gpcli
Version: 0.1.0
Summary: Fast git add/commit/push via one CLI command
Author-email: Froas <froas.dev@gmail.com>
Description-Content-Type: text/markdown
License-File: LICENCE
Dynamic: license-file

# gpcli

**gpcli (Git Push CLI)** is a simple CLI tool for instantly running `git add .`, `git commit -m "message"`, and `git push` with a single command.

---

## 🚀 Usage

From any git repository, simply run:

```bash
gp "your commit message"
```

The tool will:
- Stage all changes (`git add .`)
- Commit with your message
- Push to the current branch

---

## 🛠️ Installation

Clone this repository and install locally:

```bash
pip install .
```

Or, if published on PyPI:

```bash
pip install gpcli
```

---

## 💡 Why?

Typing `git add . && git commit -m "" && git push` every time is boring!  
Use `pycmt` for one-shot commits to speed up your workflow.

---

## 📝 License

MIT — see [LICENSE](https://github.com/froas-dev/pico/blob/master/LICENCE) for details.

---

**Author:** [Froas](https://github.com/Froas)


