Metadata-Version: 2.4
Name: git-chalak
Version: 1.0.2
Summary: ⚡ Supercharge your Git workflow with short, powerful commands
Author-email: Sameer Tiruwa <sameertiruwa1010@gmail.com>
License: MIT License
        
        Copyright (c) 2026 Sameer Tiruwa
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/sameertiruwa/git-chalak
Project-URL: Repository, https://github.com/sameertiruwa/git-chalak
Project-URL: Issues, https://github.com/sameertiruwa/git-chalak/issues
Keywords: git,cli,developer-tools,productivity
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Version Control :: Git
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.0
Dynamic: license-file

# git-chalak

> *chalak (चालाक) — clever, smart, sharp*

A minimal CLI tool that wraps common Git workflows into short, memorable commands. Built for developers who push code multiple times a day.

[![PyPI version](https://img.shields.io/pypi/v/git-chalak.svg)](https://pypi.org/project/git-chalak/)
[![Python](https://img.shields.io/pypi/pyversions/git-chalak.svg)](https://pypi.org/project/git-chalak/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

---

## Installation

```bash
pipx install git-chalak
```

> Requires [pipx](https://pipx.pypa.io). Install it with `sudo apt install pipx` or `brew install pipx`.

---

## Commands

Both `git-chalak` and `gc` work identically.

| Command | Runs |
|---|---|
| `gc st` | `git status` |
| `gc ac` | `git add . && git commit -m "update"` |
| `gc ac "message"` | `git add . && git commit -m "message"` |
| `gc acp` | `git add . && git commit -m "update" && git push` |
| `gc acp "message"` | `git add . && git commit -m "message" && git push` |
| `gc p` | `git push` |
| `gc pl` | `git pull` |
| `gc lg` | `git log --oneline` |

---

## Usage

```bash
# Check what changed
gc st

# Stage and commit
gc ac "fix null pointer in login"

# Stage, commit, and push in one shot
gc acp "add dark mode support"

# Pull latest, then push your changes
gc pl
gc p

# Review recent commits
gc lg
```

---

## Requirements

- Python 3.9+
- Git installed and available in `PATH`

---

## License

MIT © 2026 [Sameer Tiruwa](https://github.com/sameertiruwa)
